Answers for "change your flutter app's statusbar's color or navigationbar's color programmatically."

8

color of status bar flutter

SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
  statusBarColor: Colors.white
));
Posted by: Guest on October-21-2020
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 "change your flutter app's statusbar's color or navigationbar's color programmatically."

Code answers related to "Dart"

Browse Popular Code Answers by Language