Skip to main content
1

🎨 System Overlay Styling

addAnnotatedRegion({Color? statusBarColor, Brightness? statusBarBrightness, Color? navigationBarColor, Brightness? navigationBarBrightness})
Widget
Wraps the 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
);