Gino Valente
Gino Valente
> No, I worked around that by avoiding numbers divisible by 6. 😳
> My main issue though is that it seems that's going _much_ further than the stated goal of having a cursor and the ability to select text in a `TextBox`....
Thanks for bringing this to our attention! I haven't tried running any of Kayak on mobile but I'm glad to see it at least renders lol. Touches were somewhat in...
This would be a really great addition. And I think all your variants look good (although I'd personally put `+` on the right instead of the left) and useful— especially...
Does it panic if you move that same resource access into a custom widget? My guess is that we actually don't have access to `World` at this point.
Hm, yeah it probably is: https://github.com/StarArawn/kayak_ui/blob/f90c0541ea1b8016ccf44904c426ce70e1c9a2aa/bevy_kayak_ui/src/bevy_context.rs#L40-L49 I think the only way to achieve this unfortunately would be to do so within a widget— where `World` access is guaranteed— rather than...
> Another suggestion would be to load in the resource via the `create_ui` system. Actually, yeah this might be a simpler solution assuming you can pass the resource into the...
> Children of X parent will never re-render unless the props change. What about layout? Will they re-render if the layout of the parent or a sibling changes?
> Diffing isn't fixed yet. We need to wrap props in `Binding` inside the widget proc macros. Once that's done we can ignore updating children. No need to diff either...
> I wonder if it would be possible to simply reuse the bevy Color type since it's much more complete. I think we'd want to avoid a strict Bevy dependency...