floem
floem copied to clipboard
A native Rust UI library with fine-grained reactivity
With `VirtualList`, when adding new elements in the middle of the source list, 2 (or more) items can be selected at the same time, like if they were considered as...
Now you cannot enter text with non-Latin letters, and the input method cannot be activated correctly on both windows and linux.
It looks like there is an issue with the winit implementation since [the menu code is commented out](https://github.com/lapce/floem/blob/abc6bebed2dcba60fa4643e36bc5ff4559a786a6/src/window_handle.rs#L1060-L1075) in the code base right now. Possibly related to #17? I figured...
floem looks very promising, but without subpixel hinting the rendering quality of fonts is rather poor (which was also the first thing I noticed in lapce). To match the font...
When the border is set individually via `border_top` etc and not via `border` the border radius is ignored. ```rust use floem::{ peniko::Color, view::View, views::{label, Decorators}, }; fn app_view() -> impl...
On a Linux OS, when adding `.on_key_up()` or `.on_key_down()` to the main view in order to register some global shortcuts, nothing happens. Hitting any key does not trigger the keyboard...
Some of the view code uses a `RwSignal` when that doesn't entirely make sense. `Editor` is 99% shared in-of-itself, *except* for the `Cell`s: `effects_cx` is disposed & recreated if you...
 Probably due to no longer including newlines in the visual line, so selection logic needs some +1 to size if the lines are empty.
Happy to create an issue for each if that is better but didn't want to spam the issues - [x] FIXED When in `light` mode the gutter paints the gutter...