Kivimango
Kivimango
The problem is getting the screen size in a cross-platform way. If the target platform is not webASM then you could use `orbclient::get_display_size()` in one of your widget's state init...
duplicate of https://github.com/redox-os/orbtk/issues/71 and https://github.com/redox-os/orbtk/issues/416 see my answer on #416
Now you could send messages between widgets. I made an example for you (you can adapt to your needs). I hope it helps. ```rust use orbtk::prelude::*; //|---------------------------------------------------------------------------| //|------------------------------SENDER---------------------------------------| //|---------------------------------------------------------------------------| enum...
Im not really into the event part of the codebase, but you could start the animation in one of the widget's State init() method.
Thanks for reporting. It is strange, I tried the showcase's Listview with SelectionMode::None, and it doesn't crash, The ListView's code seems to be checking for the None case too. In...
The original issue was #285, unfortunately it was closed by the author.
I started working on this. I see in the Image struct the [image ](https://github.com/redox-os/orbtk/blob/develop/crates/render/src/raqote/image.rs) representation is already in the memory after opening as a render_target.data. Unfortunately it is a Vec,...
> > > This is how resizing is handled by `orbimage` crate https://gitlab.redox-os.org/redox-os/orbimage/-/blob/master/src/lib.rs. Maybe this will help you. The two Image struct is almost identical. In orbimage, there is another...
I'm changing the title of the window occasionally. I noticed that not just the first click is lost, but the title of the window is changed only after I click...
I measured stuff again. Looks like the problem is in the ```arrange()``` method. To my surprise the ```get_column_x_and_width( ```), ```get_row_y_and_height() ```, ```calculate_column_width() ```, ```calculate_column_height() ``` methods i think are pretty...