Answers for "change the color of a portion of text flutter"

9

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

Code answers related to "change the color of a portion of text flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language