Roberto Saccon

Results 33 comments of Roberto Saccon

kurko, yes that makes sense. And I realised that you are loading just one level deeper (but got confused what happened if go even deeper, adpapter.findMany gets called, as I...

Even with throtteling, on Chrome 5 and Firefox the splitplane ONLY relayout when the handle is moved verly slowly. Moving the handle fast with high throttle-value seems that the drag...

> What's the purpose of the `AnimationEnum`? Let me try to explain. At the current stage of my Implementation I cannot use SpringAnimations with the original `AnimatedSignalVec` because a duration...

Generally I prefer the EventDispatcher approach, but this is less verbose and might be useful for certain use cases, e.g. re-implement a React component or so

As discussed here: https://github.com/Pauan/rust-dominator/issues/6#issuecomment-454343134

Thanks a lot for the detailed answer, it is very helpful. I started to port over an app I started with yew and seed. And I will try to add...

@Pauan I tried to use the EventDispatcher you showed above, but it does not compile, and I am a newbie at troubleshooting Rust generics . Here is the error I...

Thanks a lot, EventDispatcher compiles now, but unfortunately now I got a compile error at the Child, when sending the events: ``` error[E0277]: the trait bound `F: std::clone::Clone` is not...

Thanks a lot. Very demanding, this Rust type system ! It still did not compile, but that was an easy one, I changed the signature of the render function in...

Next problem I ran into, when trying to use Events where the `enum` has variants with fields, e.g.: ``` #[derive(Clone, Copy)] pub enum Event { SimpleEvent, StringEvent(String), } ``` then...