Answers for "how to set text color in flutter"

C#
5

change border color of TextField in flutter

TextFormField(
        decoration: InputDecoration(
          labelText: "Resevior Name",
          fillColor: Colors.white,
          focusedBorder:OutlineInputBorder(
            borderSide: const BorderSide(color: Colors.white, width: 2.0),
            borderRadius: BorderRadius.circular(25.0),
          ),
        ),
      )
Posted by: Guest on November-03-2020
6

flutter text color

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

change icon color flutter

Icon(
  Icons.widgets,
  color: Colors.blue.shade400,
)
Posted by: Guest on December-01-2020
2

flutter text color

Text(
  "Hello",
  style: TextStyle(color: Colors.black.withOpacity(0.5)),
)
Posted by: Guest on August-20-2021
0

Flutter Html text color

Flutter Html Widget 
Html(
    data: 'my text',
    style: {
    "body": Style(
    fontSize: FontSize(18.0),
    fontWeight: FontWeight.bold,
    ),
    },
)
Posted by: Guest on January-21-2021

Code answers related to "how to set text color in flutter"

C# Answers by Framework

Browse Popular Code Answers by Language