diff options
author | 2021-10-20 19:06:53 +0700 | |
---|---|---|
committer | 2021-10-20 19:18:40 +0700 | |
commit | d39ad717ed0ab85acbe935d7ab883166b36e7bc7 (patch) | |
tree | 2be868e8d040a1cfa8c6d5bae7c16b1c3ee88fec /examples/styling | |
parent | cc560aca181202e827bfdc9afb6fc9fbe42f54d6 (diff) | |
download | iced-d39ad717ed0ab85acbe935d7ab883166b36e7bc7.tar.gz iced-d39ad717ed0ab85acbe935d7ab883166b36e7bc7.tar.bz2 iced-d39ad717ed0ab85acbe935d7ab883166b36e7bc7.zip |
Wire up styling to `Radio` in `iced_native`
Diffstat (limited to 'examples/styling')
-rw-r--r-- | examples/styling/src/main.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/styling/src/main.rs b/examples/styling/src/main.rs index cca94c8f..7e9b01ab 100644 --- a/examples/styling/src/main.rs +++ b/examples/styling/src/main.rs @@ -64,7 +64,7 @@ impl Sandbox for Styling { Some(self.theme), Message::ThemeChanged, ) - .style(self.theme), + .style(self.theme.into()), ) }, ); @@ -185,11 +185,11 @@ mod style { } } - impl From<Theme> for Box<dyn radio::StyleSheet> { + impl From<Theme> for &'static dyn radio::StyleSheet { fn from(theme: Theme) -> Self { match theme { Theme::Light => Default::default(), - Theme::Dark => dark::Radio.into(), + Theme::Dark => &dark::Radio, } } } |