Answers for "Icon class in flutter"

1

flutter icon colo

Icon(
  Icons.jaz_lu,
  color: Colors.blue.shade400,
)
Posted by: Guest on February-17-2021
14

flutter add icon

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
4

flutter launcher icons

dev_dependencies:
  flutter_launcher_icons: ^0.9.0

flutter_icons:
  android: "launcher_icon"
  ios: true
  image_path: "assets/icon/icon.png"
/* command  
flutter pub get
flutter pub run flutter_launcher_icons:main
*/
Posted by: Guest on July-02-2021
0

icon style in flutter

Ink(
decoration: ShapeDecoration(
color: Colors.blue,
shape: CircularBorder(),
child: Icon(
Icon.camera,
color: Colors.white
Posted by: Guest on August-17-2021
4

flutter launcher icon

dependencies:
  flutter_launcher_icons: ^0.8.0
Posted by: Guest on September-29-2020

Code answers related to "Dart"

Browse Popular Code Answers by Language