diff --git a/examples/cupertino/cupertino_alert/Cargo.toml b/examples/cupertino/cupertino_alert/Cargo.toml index ef99d2ec..6b386ea6 100644 --- a/examples/cupertino/cupertino_alert/Cargo.toml +++ b/examples/cupertino/cupertino_alert/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" publish = false [dependencies] -iced = { version = "0.8.0", features = [] } +iced = { version = "0.9.0", features = [] } iced_aw = { path = "../../../", features = ["cupertino"] } diff --git a/examples/cupertino/cupertino_alert/src/main.rs b/examples/cupertino/cupertino_alert/src/main.rs index f18848c2..4d231e29 100644 --- a/examples/cupertino/cupertino_alert/src/main.rs +++ b/examples/cupertino/cupertino_alert/src/main.rs @@ -30,18 +30,18 @@ enum Message { ShowModal, } -#[cfg_attr(rustfmt, rustfmt_skip)] +#[rustfmt::skip] mod constants { - pub static PRIMARY_TEXT: &'static str = "Allow \"Maps\" to access your location while using the app?"; - pub static SECONDARY_TEXT: &'static str = "Your current location will be displayed on the map and used for directions, nearby search results, and estimated travel times. "; - pub static ALLOW: &'static str = "Allow"; - pub static DONT_ALLOW: &'static str = "Don't Allow"; + pub static PRIMARY_TEXT: &str = "Allow \"Maps\" to access your location while using the app?"; + pub static SECONDARY_TEXT: &str = "Your current location will be displayed on the map and used for directions, nearby search results, and estimated travel times. "; + pub static ALLOW: &str = "Allow"; + pub static DONT_ALLOW: &str = "Don't Allow"; } use constants::*; // `cargo fmt` becomes unreadable for this example, so switching off // -#[cfg_attr(rustfmt, rustfmt_skip)] +#[rustfmt::skip] impl Application for Alert { type Executor = executor::Default; type Message = Message; @@ -69,10 +69,7 @@ impl Application for Alert { } fn view(&self) -> Element { - let modal_hidden: bool = match self { - Alert::ShowModal => false, - _ => true, - }; + let modal_hidden = !matches!(self, Alert::ShowModal); match self { Alert::CancelEvent => println!("Received click for the cancel button"), diff --git a/examples/cupertino/cupertino_button/Cargo.toml b/examples/cupertino/cupertino_button/Cargo.toml index 07ea0d4a..d65f8888 100644 --- a/examples/cupertino/cupertino_button/Cargo.toml +++ b/examples/cupertino/cupertino_button/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" publish = false [dependencies] -iced = { version = "0.8.0", features = [] } +iced = { version = "0.9.0", features = [] } iced_aw = { path = "../../../", features = ["cupertino"] } diff --git a/examples/cupertino/cupertino_button/src/main.rs b/examples/cupertino/cupertino_button/src/main.rs index bd7d233b..129ae913 100644 --- a/examples/cupertino/cupertino_button/src/main.rs +++ b/examples/cupertino/cupertino_button/src/main.rs @@ -26,7 +26,7 @@ enum Message { } // `cargo fmt` becomes unreadable for this example, so switching off // -#[cfg_attr(rustfmt, rustfmt_skip)] +#[rustfmt::skip] impl Application for ButtonApp { type Executor = executor::Default; type Message = Message; diff --git a/examples/cupertino/cupertino_switch/Cargo.toml b/examples/cupertino/cupertino_switch/Cargo.toml index 3eb0a94f..6f6b80b0 100644 --- a/examples/cupertino/cupertino_switch/Cargo.toml +++ b/examples/cupertino/cupertino_switch/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" publish = false [dependencies] -iced = { version = "0.8.0", features = [] } +iced = { version = "0.9.0", features = [] } iced_aw = { path = "../../../", features = ["cupertino"] } diff --git a/examples/cupertino/cupertino_switch/src/main.rs b/examples/cupertino/cupertino_switch/src/main.rs index 3e381635..b5afa204 100644 --- a/examples/cupertino/cupertino_switch/src/main.rs +++ b/examples/cupertino/cupertino_switch/src/main.rs @@ -22,7 +22,7 @@ enum Message { } // `cargo fmt` becomes unreadable for this example, so switching off // -#[cfg_attr(rustfmt, rustfmt_skip)] +#[rustfmt::skip] impl Application for Switch { type Executor = executor::Default; type Message = Message;