mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
fix widget events with form event updates
This commit is contained in:
parent
d99a5f3338
commit
81d32800f8
2 changed files with 1 additions and 2 deletions
|
@ -60,7 +60,7 @@ impl EventData {
|
|||
pub struct FormData {
|
||||
pub value: String,
|
||||
|
||||
pub values: HashMap<String, String>,
|
||||
pub values: HashMap<String, Vec<String>>,
|
||||
|
||||
pub files: Option<Files>,
|
||||
}
|
||||
|
|
|
@ -20,7 +20,6 @@ use std::{
|
|||
};
|
||||
use std::{rc::Rc, sync::RwLock};
|
||||
use style_attributes::StyleModifier;
|
||||
use taffy::Taffy;
|
||||
pub use taffy::{geometry::Point, prelude::*};
|
||||
use tokio::select;
|
||||
use tui::{backend::CrosstermBackend, layout::Rect, Terminal};
|
||||
|
|
Loading…
Reference in a new issue