Answers for "flutter color hex online"

5

color from hex code flutter

Color c = const Color(0xFF42A5F5);
Color c = const Color.fromARGB(0xFF, 0x42, 0xA5, 0xF5);
Color c = const Color.fromARGB(255, 66, 165, 245);
Color c = const Color.fromRGBO(66, 165, 245, 1.0);
Posted by: Guest on May-03-2020
0

flutter hex color

// color start from 0xff_colorcode
Color(0xffA5A4A4)
Color(0xffA5A4A4).withOpacity(.5)
Posted by: Guest on January-10-2022

Code answers related to "Dart"

Browse Popular Code Answers by Language