pub trait ActiveTheme {
// Required method
fn theme(&self) -> &Arc<Theme> ⓘ;
}Expand description
Trait for accessing the current theme from an App context
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".