Create layout example

This commit is contained in:
Héctor Ramón Jiménez 2023-03-27 15:43:52 +02:00 committed by Héctor Ramón Jiménez
parent fd8f980b88
commit 0322e820eb
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
5 changed files with 135 additions and 2 deletions

View file

@ -0,0 +1,9 @@
[package]
name = "layout"
version = "0.1.0"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021"
publish = false
[dependencies]
iced = { path = "../.." }

123
examples/layout/src/main.rs Normal file
View file

@ -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(),
}
}
}

View file

@ -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::*;

View file

@ -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,

View file

@ -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,