Answers for "flutter app show status bar"

1

flutter remove status bar

SystemChrome.setEnabledSystemUIOverlays([SystemUiOverlay.bottom]);
Posted by: Guest on March-03-2021
5

flutter status bar color

return AnnotatedRegion<SystemUiOverlayStyle>(
  value: const SystemUiOverlayStyle(
    // For Android.
    // Use [light] for white status bar and [dark] for black status bar.
    statusBarIconBrightness: Brightness.light,
    // For iOS.
    // Use [dark] for white status bar and [light] for black status bar.
    statusBarBrightness: Brightness.dark,
  ),
  child: Scaffold(...),
);
Posted by: Guest on July-21-2020

Code answers related to "flutter app show status bar"

Browse Popular Code Answers by Language