Skip to content

Commit

Permalink
Create layout example
Browse files Browse the repository at this point in the history
  • Loading branch information
hecrj committed Jan 10, 2024
1 parent fd8f980 commit 0322e82
Show file tree
Hide file tree
Showing 5 changed files with 135 additions and 2 deletions.
9 changes: 9 additions & 0 deletions examples/layout/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[package]
name = "layout"
version = "0.1.0"
authors = ["Héctor Ramón Jiménez <[email protected]>"]
edition = "2021"
publish = false

[dependencies]
iced = { path = "../.." }
123 changes: 123 additions & 0 deletions examples/layout/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
use iced::executor;
use iced::widget::{column, container, row, text, vertical_rule};
use iced::{
Application, Command, Element, Length, Settings, Subscription, Theme,
};

pub fn main() -> iced::Result {
Layout::run(Settings::default())
}

#[derive(Debug)]
struct Layout {
previous: Vec<Example>,
current: Example,
next: Vec<Example>,
}

#[derive(Debug, Clone, Copy)]
enum Message {
Next,
Previous,
}

impl Application for Layout {
type Message = Message;
type Theme = Theme;
type Executor = executor::Default;
type Flags = ();

fn new(_flags: Self::Flags) -> (Self, Command<Message>) {
(
Self {
previous: vec![],
current: Example::Centered,
next: vec![Example::NestedQuotes],
},
Command::none(),
)
}

fn title(&self) -> String {
String::from("Counter - Iced")
}

fn update(&mut self, message: Self::Message) -> Command<Message> {
match message {
Message::Next => {
if !self.next.is_empty() {
let previous = std::mem::replace(
&mut self.current,
self.next.remove(0),
);

self.previous.push(previous);
}
}
Message::Previous => {
if let Some(previous) = self.previous.pop() {
let next = std::mem::replace(&mut self.current, previous);

self.next.insert(0, next);
}
}
}

Command::none()
}

fn subscription(&self) -> Subscription<Message> {
use iced::event::{self, Event};
use iced::keyboard;

event::listen_with(|event, status| match event {
Event::Keyboard(keyboard::Event::KeyReleased {
key_code, ..
}) if status == event::Status::Ignored => match key_code {
keyboard::KeyCode::Left => Some(Message::Previous),
keyboard::KeyCode::Right => Some(Message::Next),
_ => None,
},
_ => None,
})
}

fn view(&self) -> Element<Message> {
self.current.view()
}
}

#[derive(Debug)]
enum Example {
Centered,
NestedQuotes,
}

impl Example {
fn view(&self) -> Element<Message> {
match self {
Self::Centered => container(text("I am centered!").size(50))
.width(Length::Fill)
.height(Length::Fill)
.center_x()
.center_y()
.into(),
Self::NestedQuotes => container((1..5).fold(
column![text("Original text")].padding(10),
|quotes, i| {
column![
row![vertical_rule(2), quotes],
text(format!("Reply {i}"))
]
.spacing(10)
.padding(10)
},
))
.width(Length::Fill)
.height(Length::Fill)
.center_x()
.center_y()
.into(),
}
}
}
1 change: 1 addition & 0 deletions src/time.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
//! Listen and react to time.
pub use iced_core::time::{Duration, Instant};

#[allow(unused_imports)]
pub use iced_futures::backend::default::time::*;
2 changes: 1 addition & 1 deletion widget/src/column.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ impl<'a, Message, Renderer> Column<'a, Message, Renderer> {
Column {
spacing: 0.0,
padding: Padding::ZERO,
width: Length::Fill,
width: Length::Shrink,
height: Length::Shrink,
max_width: f32::INFINITY,
align_items: Alignment::Start,
Expand Down
2 changes: 1 addition & 1 deletion widget/src/row.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ impl<'a, Message, Renderer> Row<'a, Message, Renderer> {
Row {
spacing: 0.0,
padding: Padding::ZERO,
width: Length::Fill,
width: Length::Shrink,
height: Length::Shrink,
align_items: Alignment::Start,
children,
Expand Down

0 comments on commit 0322e82

Please sign in to comment.