Answers for "change icon color flutter"

2

change icon color flutter

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

how to change appbar color in flutter

appBar: AppBar(
      title: const Text('Example'),
      backgroundColor: Colors.black,
    ),
Posted by: Guest on November-13-2020
11

flutter icon color

Icon(
          Icons.home,
          color: Colors.blue,
          size: 40.0,
          textDirection: TextDirection.ltr,
          semanticLabel: 'Icon', // Announced in accessibility modes (e.g TalkBack/VoiceOver). This label does not show in the UI.
        ),
Posted by: Guest on August-20-2021
0

change color icon tabbar flutter

appBar: AppBar(
        brightness: Brightness.dark,
        iconTheme: IconThemeData(color: Colors.white),
        title: Text("Title TabBar"),
)
Posted by: Guest on June-02-2020

Code answers related to "change icon color flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language