1 2 3 4 5 6 7 8 9 10
use crate::resources::styles::theme::AppTheme; use iced::widget::container; impl container::StyleSheet for AppTheme { type Style = (); fn appearance(&self, _style: &Self::Style) -> container::Appearance { container::Appearance::default() } }