skip to Main Content

Flutter ColorScheme not applying colors

I'm trying to use a dark theme in a Flutter app but everything seems wrong. I'm using dark theme like this. ThemeData darkTheme = ThemeData.from( useMaterial3: true, colorScheme: ColorScheme.dark( brightness: Brightness.dark, // tried with or without this line ), textTheme:…

VIEW QUESTION
Back To Top
Search