Dante Helmore
Dante Helmore
You're probably using `ChildrenWithProps::::iter();` wrong. It doesn't allow mutation because you're supposed to mutate the elements, then render them to the VDom using `Component::view();`. See the [example on the docs...
I actually made something like what you want to do yesterday. [Here it is](https://github.com/frostu8/citrus/blob/b9919fbdbae39c038c1d366139035469b3237265/src/editor/panel/mod.rs#L55-L110) The solution was to simply not use children and use a map. I wrote [my own...
> So you're saying we should create a new component by mapping the existing one in the render call? Isn't that expensive? I'm saying use a list of states rather...
> So take a prop of a bunch of `RadioButton`s and render the buttons accordingly? I guess so. In Yew, I'd probably instead mark the indexes for each `RadioButton` component,...
> Would an Error struct that holds a Vec of InnerErrors work? It would allow us to easily compose multiple errors and allow us to implement error for the whole...
> If you're using IVSHMEM, try the network version. Or the other way round. This looks like a bandwidth or interrupt issue somewhere, and using different virtual hardware for transport...