Documentation Index
Fetch the complete documentation index at: https://starrycodes.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
🚀 Flutter_Extend Version 0.3.0 is now live! See our changelog for details.
Wraps a Scaffold in an AnnotatedRegion to customize the appearance and icon brightness of the system status bar and navigation bar overlays.
Documentation Index
Fetch the complete documentation index at: https://starrycodes.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
🎨 System Overlay Styling
Show Parameters
background color of the status bar overlay.brightness of status bar icons (e.g., Brightness.light for dark icons, Brightness.dark for light icons).background color of the system navigation bar (bottom bar on Android).brightness of the navigation bar icons.Scaffold in an AnnotatedRegion to customize the system status bar and navigation bar overlays.// Ensures status bar icons (clock, battery) are white/light:
return myScaffold.addAnnotatedRegion(
statusBarBrightness: Brightness.light, // Controls icon/text color
statusBarColor: Colors.black, // Status bar background color
);
Was this page helpful?