Answers for "gradient color appbar flutter"

2

appbar gradient flutter

AppBar(
  flexibleSpace: Container(
   decoration: BoxDecoration(
    gradient: LinearGradient(
      colors: [Colors.cyan, Colors.yellow], stops: [0.5, 1.0],
      ),
    ),
  ),
),
Posted by: Guest on October-15-2020

Code answers related to "gradient color appbar flutter"

Browse Popular Code Answers by Language