Answers for "material color flutter"

1

flutter MaterialColor

Map<int, Color> colorMap = {
  50: Color.fromRGBO(147, 205, 72, .1),
  100: Color.fromRGBO(147, 205, 72, .2),
  200: Color.fromRGBO(147, 205, 72, .3),
  300: Color.fromRGBO(147, 205, 72, .4),
  400: Color.fromRGBO(147, 205, 72, .5),
  500: Color.fromRGBO(147, 205, 72, .6),
  600: Color.fromRGBO(147, 205, 72, .7),
  700: Color.fromRGBO(147, 205, 72, .8),
  800: Color.fromRGBO(147, 205, 72, .9),
  900: Color.fromRGBO(147, 205, 72, 1),
};
// Green color code: 93cd48 and first two characters (FF) are alpha values (transparency)
MaterialColor customColor = MaterialColor(0xFF93cd48, colorMap);
Posted by: Guest on November-28-2021
4

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
1

flutter get a MaterialColor from rgb

Map<int, Color> colorCodes = {  50: Color.fromRGBO(147, 205, 72, .1),  100: Color.fromRGBO(147, 205, 72, .2),  200: Color.fromRGBO(147, 205, 72, .3),  300: Color.fromRGBO(147, 205, 72, .4),  400: Color.fromRGBO(147, 205, 72, .5),  500: Color.fromRGBO(147, 205, 72, .6),  600: Color.fromRGBO(147, 205, 72, .7),  700: Color.fromRGBO(147, 205, 72, .8),  800: Color.fromRGBO(147, 205, 72, .9),  900: Color.fromRGBO(147, 205, 72, 1),};// Green color code: FF93cd48MaterialColor customColor = MaterialColor(0xFF93cd48, colorCodes);
Posted by: Guest on January-30-2021
0

color flutter

SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
  statusBarColor: Colors.white
));
Posted by: Guest on July-06-2021
0

how to give shade to the colors in flutter

ThemeData(primarySwatch: Colors.lime.shade700),
Posted by: Guest on May-08-2020
0

flutter color

AnimatedContainer(
          width: MediaQuery.of(context).size.width, 
          alignment: Alignment.bottomCenter,
          height: MediaQuery.of(context).size.height,
          duration: Duration(milliseconds: 100),
          padding: EdgeInsets.fromLTRB(15, 10, 15, 5),
          color: Colors.blue, 						//change to any preset color(ctrl + space)
         
        ),
Posted by: Guest on October-25-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language