Skip to main content

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.

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
);