Answers for "flutter change color of text widget from themes"

8

flutter text color

new Text(
  'Welcome to Flutter Tutorial.',
  style: TextStyle(
    color: Colors.blue,
  ),
)
Posted by: Guest on January-21-2021
2

flutter text color

Text(
  "Hello",
  style: TextStyle(color: Colors.black.withOpacity(0.5)),
)
Posted by: Guest on August-20-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 "flutter change color of text widget from themes"

Code answers related to "Dart"

Browse Popular Code Answers by Language