Flutter Card Background Gradient

[Solved] Flutter Card Background Gradient | Dart - Code Explorer | yomemimo.com
Question : gradient container flutter

Answered by : faithful-falcon-z3cpablnr9p5

decoration: BoxDecoration( gradient: LinearGradient( colors: [ const Color(0xFF3366FF), const Color(0xFF00CCFF), ], begin: const FractionalOffset(0.0, 0.0), end: const FractionalOffset(1.0, 0.0), stops: [0.0, 1.0], tileMode: TileMode.clamp, ), ),

Source : https://stackoverflow.com/questions/53408917/flutter-wrapping-scaffold-with-container-for-gradient-background | Last Update : Sun, 12 Jul 20

Answers related to flutter card background gradient

Code Explorer Popular Question For Dart