diff options
Diffstat (limited to '')
| -rw-r--r-- | examples/custom_widget/src/main.rs | 18 | 
1 files changed, 9 insertions, 9 deletions
diff --git a/examples/custom_widget/src/main.rs b/examples/custom_widget/src/main.rs index 305ef7dd..aa49ebd0 100644 --- a/examples/custom_widget/src/main.rs +++ b/examples/custom_widget/src/main.rs @@ -83,10 +83,10 @@ mod circle {  use circle::circle;  use iced::widget::{column, container, slider, text}; -use iced::{Alignment, Element, Length, Sandbox, Settings}; +use iced::{Alignment, Element, Length};  pub fn main() -> iced::Result { -    Example::run(Settings::default()) +    iced::run("Custom Widget - Iced", Example::update, Example::view)  }  struct Example { @@ -98,17 +98,11 @@ enum Message {      RadiusChanged(f32),  } -impl Sandbox for Example { -    type Message = Message; - +impl Example {      fn new() -> Self {          Example { radius: 50.0 }      } -    fn title(&self) -> String { -        String::from("Custom widget - Iced") -    } -      fn update(&mut self, message: Message) {          match message {              Message::RadiusChanged(radius) => { @@ -136,3 +130,9 @@ impl Sandbox for Example {              .into()      }  } + +impl Default for Example { +    fn default() -> Self { +        Self::new() +    } +}  | 
