Answers for "change text color to white themedata flutter"

0

flutter ThemeData.dark().copyWith fontfamily

ThemeData lightTheme = ThemeData.dark().copyWith(
    textTheme: ThemeData.dark().textTheme.apply(
          fontFamily: 'RobotoMono',
        ),
    primaryTextTheme: ThemeData.dark().textTheme.apply(
          fontFamily: 'RobotoMono',
        ),
    accentTextTheme: ThemeData.dark().textTheme.apply(
          fontFamily: 'RobotoMono',
        ),
);
Posted by: Guest on November-09-2021
-2

How to get theme color inside the widget in Flutter

Color color = Theme.of(context).primaryColor;
Posted by: Guest on August-14-2021

Code answers related to "change text color to white themedata flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language