How to get primary color from the theme of a flutter app
I have a problem with theming a flutter app. I cannot get the primary color from of the theme. Here is the example code import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); //…