yew_form
yew_form copied to clipboard
Components to simplify handling forms with Yew
i was wondering if there would ever be hooks for this library to use with function components.
Compilation attempt end up with: ``` Compiling yew_form_derive v0.1.7 error[E0432]: unresolved import `syn::export` --> /home/marcin/.cargo/registry/src/github.com-1ecc6299db9ec823/yew_form_derive-0.1.7/src/lib.rs:6:10 | 6 | use syn::export::{ToTokens, TokenStream}; | ^^^^^^ could not find `export` in `syn` error[E0599]:...
This PR fixes the example and removes the conflicts that were merged, I tested it locally and it seems to work fine
There are merge conflicts in the yew_form/Cargo.toml
Currently the `Select` component doesn't reflect the field value on initial load. I think the `view` of the `Select` component needs to set the `value` attribute of the `select` element.
There are some instances of stuff like `
The live demo found at does not work because the MIME type is set incorrectly (invalid server configuration): 
Getting this panic on the current master code, my code is the same as in the examples folder, this happens as soon as oninput gets triggered for me. `panicked at...
`Form::state_mut()` (see below) calls `RC::get_mut_unchecked` which is unsafe and nightly only. Unfortunately, it is not documented why this is necessary (and why `Rc::get_mut()` cannot be used instead). Changing this would...
Hi! I can't help but notice that this repository has been inactive (and broken) for a while. I'm working on lldap (https://github.com/lldap/lldap) and I'd like to keep using this repo,...