Answers for "how to have a gradient background in scafold flutter"

8

color gradient in flutter

decoration: BoxDecoration(
    gradient: LinearGradient(
      colors: [Colors.green, Colors.blue])
  ),
Posted by: Guest on June-19-2020
0

flutter container gradient

decoration: BoxDecoration(
              gradient: LinearGradient(
            begin: Alignment.topRight,
            end: Alignment.bottomLeft,
            colors: [Colors.grey, Colors.white],
          )),
Posted by: Guest on October-25-2021

Code answers related to "how to have a gradient background in scafold flutter"

Browse Popular Code Answers by Language