Answers for "appbar background color flutter"

2

background color to container flutter

new Container(
  width: 100,
  height: 30,
  decoration: new BoxDecoration(
    color: Colors.green
  ),
 )
Posted by: Guest on November-13-2020
1

flutter appbar foregroundcolor

appBar: AppBar(
	title: Text('AppBar'),
    foregroundColor: Colors.black; // appbar text color
   ),
Posted by: Guest on August-20-2021
0

how to change appbar color in flutter

appBar: AppBar(
      title: const Text('Example'),
      backgroundColor: Colors.black,
    ),
Posted by: Guest on November-13-2020

Code answers related to "appbar background color flutter"

Browse Popular Code Answers by Language