How To change bottom bar color in flutter

Issue

i am creating app which is show the result of our university student but in my app the bottom bar of app color is not change how can i change the color of bottom bar in flutter here i post a image
Click to see image

Solution

if I understood correctly you want to change the color of your system navigation bar

void main() {
  SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
    systemNavigationBarColor: Colors.red,
  ));
  runApp(MyApp());
}

this will change its color.

Answered By – Ardeshir ojan

Answer Checked By – Gilberto Lyons (FlutterFixes Admin)

Leave a Reply

Your email address will not be published. Required fields are marked *