diff options
| author | 2024-03-16 17:09:00 +0100 | |
|---|---|---|
| committer | 2024-03-16 17:09:00 +0100 | |
| commit | 503a48e89977437bf8b7bf485f416a15a2e83ed0 (patch) | |
| tree | 30306bbaee7a31090ace9d7725d46c2c0027fe6b /examples/custom_widget | |
| parent | 0524e9b4571d264018656418f02a1f9e27e268d7 (diff) | |
| parent | cfc0383bbfff083786840e3f1fd499e5991fa629 (diff) | |
| download | iced-503a48e89977437bf8b7bf485f416a15a2e83ed0.tar.gz iced-503a48e89977437bf8b7bf485f416a15a2e83ed0.tar.bz2 iced-503a48e89977437bf8b7bf485f416a15a2e83ed0.zip  | |
Merge pull request #2331 from iced-rs/program-api
`Program` API
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() +    } +}  | 
