/// Represents the style of the OS status bar.
#[derive(Copy, Clone, Debug, Eq, PartialEq)]pubenumStatusBarStyle{/// Uses black text and symbols.
DarkContent,/// Uses white text and symbols.
LightContent,}implDefault forStatusBarStyle{fndefault()->Self{StatusBarStyle::DarkContent
}}/// Controls the appearance of the system status bar on iOS and Android.
pubstructStatusBar{/// Controls the style (i.e. color of text and symbols) of the status bar.
pubstyle: StatusBarStyle,
}