//! iOS color scheme detection
usecrate::theme::ColorScheme;/// Detect the system color scheme on iOS
pubfndetect_color_scheme()-> ColorScheme{// TODO: Use UITraitCollection.current.userInterfaceStyle
// For now, default to light
ColorScheme::Light
}