pub trait ThemeProvider {
// Required methods
fn available_themes(&self) -> Vec<String>;
fn active_theme_name(&self) -> Option<String>;
}Expand description
Provides theme lookup/synchronization for dynamic UI styling.
pub trait ThemeProvider {
// Required methods
fn available_themes(&self) -> Vec<String>;
fn active_theme_name(&self) -> Option<String>;
}Provides theme lookup/synchronization for dynamic UI styling.