Answers for "changing text theme colour in flutter"

8

flutter text color

new Text(
  'Welcome to Flutter Tutorial.',
  style: TextStyle(
    color: Colors.blue,
  ),
)
Posted by: Guest on January-21-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 "changing text theme colour in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language