Ari
Ari
> How much did you test this already So far I have made sure that all the path files are set correctly. I have not extensively tested functionality. I'll make...
> One thing I've noticed is that you can't use it anymore when the base directories don't exist already. They would be created by `init_cli()`. Without the XDG directories, the...
I've been playing around with it but can't seem to reproduce it - though I've definitely come across this myself as well. Maybe the compiler got better at inferring types...
Update: I think the issue arises when you use `into()` inside the callback. Will look into it more tomorrow.
I played around with a bit and I don't think it's as "deep" as it seems. `use_callback` and `Callback::from` don't seem to make a difference. If the variable is unused...
Just spitballing here, we could have something like ```rust struct CheckboxProperties { onchange: Callback, } #[function_component(Checkbox)] fn checkbox(props: &CheckboxProperties) { // ... props.onchange.emit((e, state.into())) } ``` I think the compiler...
Sounds good to me
> Sometimes the better match into the flow of … text :) That makes a lot of sense :laughing: > For this specific case I think it should be possible...
PNGs even. Weird. ```html ```
#128 addresses the composition issue. So implementing this should be possible now. However, `Table` doesn't currently use state internally per row so that would still need to be implemented.