Skip to content

Commit

Permalink
Merge pull request #147 from Luni-4/try-to-fix-example
Browse files Browse the repository at this point in the history
Fix examples warnings
  • Loading branch information
Andrew Wheeler(Genusis) authored Jul 12, 2023
2 parents e5a671b + fac20b1 commit 8343046
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 15 deletions.
2 changes: 1 addition & 1 deletion examples/cupertino/cupertino_alert/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

17 changes: 7 additions & 10 deletions examples/cupertino/cupertino_alert/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -69,10 +69,7 @@ impl Application for Alert {
}

fn view(&self) -> Element<Message> {
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"),
Expand Down
2 changes: 1 addition & 1 deletion examples/cupertino/cupertino_button/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

2 changes: 1 addition & 1 deletion examples/cupertino/cupertino_button/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion examples/cupertino/cupertino_switch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

2 changes: 1 addition & 1 deletion examples/cupertino/cupertino_switch/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8343046

Please sign in to comment.