Answers for "colors name in flutter"

3

color() in flutter

// Color() widget can be used in the following way:
//where 123456 is the hex color code without the '#'


Color myHexColor = Color(0xff123456)
Posted by: Guest on May-14-2020
0

flutter color

Colors.white
Color(0xffA5A4A4)
Color(0xffA5A4A4).withOpacity(.5)
Color.fromRGBO(38, 38, 38, 0.4)
Color.fromARGB(255, 66, 165, 245);
Color.fromARGB(0xFF, 0x42, 0xA5, 0xF5);
Posted by: Guest on January-10-2022

Code answers related to "Dart"

Browse Popular Code Answers by Language