Custom Colors in Flutter | Flutter Colors & Colors class
Ways of creating color in Flutter | Color class in flutter
This video explains how to create color object in Flutter.
Flutter support two classes to interact with color
1) Color &
2) Colors
Color is the main class, that allows to create custom or desired color as per your need.
Colors class contains the set of pre-defined static constants of Color objects for standard colors.
Following are the useful ways to create color
1) Color.someColorName i.e. Color.red
2) Color(hex code) i.e. Color(0XFF00FF00)
3) Color.fromRGBO(red, green, blue, opacity) i.e. Color(100, 0, 150, 1.0)
4) Color.fromARGB(alpha, red, green, blue) i.e. Color(255, 160, 0, 240)
Flutter Tutorial Playlist: https://www.youtube.com/playlist?list=PLeKQz1VjpjFq3vbq3Hvl1866nsmAQdzUo
Dart Tutorial Playlist : https://youtube.com/playlist?list=PLeKQz1VjpjFqqXLvQ8rTnYxZcUqEGA0dm
Download
0 formats
No download links available.
Custom Colors in Flutter | Flutter Color & Colors class | Flutter Tutorial #16 | NatokHD