Implement some From traits for text_input::Id
This commit is contained in:
parent
f897442831
commit
1448c5bfa5
5 changed files with 38 additions and 23 deletions
|
|
@ -25,7 +25,6 @@ struct Window {
|
|||
scale_input: String,
|
||||
current_scale: f64,
|
||||
theme: Theme,
|
||||
input_id: iced::widget::text_input::Id,
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
|
|
@ -86,7 +85,7 @@ impl Example {
|
|||
}
|
||||
Message::WindowOpened(id) => {
|
||||
let window = Window::new(self.windows.len() + 1);
|
||||
let focus_input = text_input::focus(window.input_id.clone());
|
||||
let focus_input = text_input::focus(format!("input-{id}"));
|
||||
|
||||
self.windows.insert(id, window);
|
||||
|
||||
|
|
@ -163,7 +162,6 @@ impl Window {
|
|||
scale_input: "1.0".to_string(),
|
||||
current_scale: 1.0,
|
||||
theme: Theme::ALL[count % Theme::ALL.len()].clone(),
|
||||
input_id: text_input::Id::unique(),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -182,7 +180,7 @@ impl Window {
|
|||
text("Window title:"),
|
||||
text_input("Window Title", &self.title)
|
||||
.on_input(move |msg| { Message::TitleChanged(id, msg) })
|
||||
.id(self.input_id.clone())
|
||||
.id(format!("input-{id}"))
|
||||
];
|
||||
|
||||
let new_window_button =
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@ publish = false
|
|||
iced.workspace = true
|
||||
iced.features = ["async-std", "debug"]
|
||||
|
||||
once_cell.workspace = true
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
uuid = { version = "1.0", features = ["v4", "fast-rng", "serde"] }
|
||||
|
|
|
|||
|
|
@ -6,12 +6,9 @@ use iced::widget::{
|
|||
use iced::window;
|
||||
use iced::{Center, Element, Fill, Font, Subscription, Task as Command};
|
||||
|
||||
use once_cell::sync::Lazy;
|
||||
use serde::{Deserialize, Serialize};
|
||||
use uuid::Uuid;
|
||||
|
||||
static INPUT_ID: Lazy<text_input::Id> = Lazy::new(text_input::Id::unique);
|
||||
|
||||
pub fn main() -> iced::Result {
|
||||
#[cfg(not(target_arch = "wasm32"))]
|
||||
tracing_subscriber::fmt::init();
|
||||
|
|
@ -85,7 +82,7 @@ impl Todos {
|
|||
_ => {}
|
||||
}
|
||||
|
||||
text_input::focus(INPUT_ID.clone())
|
||||
text_input::focus("new-task")
|
||||
}
|
||||
Todos::Loaded(state) => {
|
||||
let mut saved = false;
|
||||
|
|
@ -198,7 +195,7 @@ impl Todos {
|
|||
.align_x(Center);
|
||||
|
||||
let input = text_input("What needs to be done?", input_value)
|
||||
.id(INPUT_ID.clone())
|
||||
.id("new-task")
|
||||
.on_input(Message::InputChanged)
|
||||
.on_submit(Message::CreateTask)
|
||||
.padding(15)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue