Answers for "flutter topbar gradient color"

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 "flutter topbar gradient color"

Browse Popular Code Answers by Language