Expose iced_pure through a pure feature in iced

Besides exposing the `iced_pure` crate, enabling the `pure` feature also
provides pure versions of both the `Application` and `Sandbox` traits!
🎉
This commit is contained in:
Héctor Ramón Jiménez 2022-02-11 17:51:33 +07:00
parent 897188317b
commit 66d69b5c9a
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
7 changed files with 344 additions and 14 deletions

View file

@ -6,5 +6,4 @@ edition = "2021"
publish = false
[dependencies]
iced = { path = "../../.." }
iced_pure = { path = "../../../pure" }
iced = { path = "../../..", features = ["pure"] }

View file

@ -1,5 +1,5 @@
use iced::{Alignment, Element, Sandbox, Settings};
use iced_pure::{Button, Column, Pure, State, Text};
use iced::pure::{Button, Column, Element, Sandbox, Text};
use iced::{Alignment, Settings};
pub fn main() -> iced::Result {
Counter::run(Settings::default())
@ -7,7 +7,6 @@ pub fn main() -> iced::Result {
struct Counter {
value: i32,
state: State<Message, iced::Renderer>,
}
#[derive(Debug, Clone, Copy)]
@ -20,10 +19,7 @@ impl Sandbox for Counter {
type Message = Message;
fn new() -> Self {
Self {
value: 0,
state: State::new(),
}
Self { value: 0 }
}
fn title(&self) -> String {
@ -41,14 +37,13 @@ impl Sandbox for Counter {
}
}
fn view(&mut self) -> Element<'_, Message> {
let content = Column::new()
fn view(&self) -> Element<Message> {
Column::new()
.padding(20)
.align_items(Alignment::Center)
.push(Button::new("Increment").on_press(Message::IncrementPressed))
.push(Text::new(self.value.to_string()).size(50))
.push(Button::new("Decrement").on_press(Message::DecrementPressed));
Pure::new(&mut self.state, content).into()
.push(Button::new("Decrement").on_press(Message::DecrementPressed))
.into()
}
}