floem icon indicating copy to clipboard operation
floem copied to clipboard

A native Rust UI library with fine-grained reactivity

Results 98 floem issues
Sort by recently updated
recently updated
newest added

Floems event functions like `on_event`, `on_key_down`, `on_resize` etc are not being called. Taking the editor example below: ```diff use floem::{ keyboard::{Key, ModifiersState, NamedKey}, view::View, views::{ editor::{ command::{Command, CommandExecuted}, core::{command::EditCommand, editor::EditType,...

Slightly modifying the editor example to this will make it easy to re-produce ```diff use floem::{ keyboard::{Key, ModifiersState, NamedKey}, view::View, views::{ editor::{ command::{Command, CommandExecuted}, core::{command::EditCommand, editor::EditType, selection::Selection}, text::SimpleStyling, }, stack,...

Right now when your focus is within the editor you can't simply tab out of it to get to the next input (which makes sense since you'd want to capture...

In the editor example ![blinking](https://github.com/lapce/floem/assets/1266923/2da24a44-72ea-4c99-b469-a0556ffe0076)

trying to insert quotes (") or single quotes (') results in nothing. Typing " + space should insert a single ".

``` Finished dev [unoptimized + debuginfo] target(s) in 0.41s Running `target\debug\floem-test.exe` thread 'main' panicked at C:\Users\Guess\.cargo\registry\src\index.crates.io-6f17d22bba15001f\floem-cosmic-text-0.7.0\src\shape.rs:108:17: begin

Just like a checkbox have default check icon, dropdown needs its default icon too. ![Untitled](https://github.com/lapce/floem/assets/161233868/0a07008b-93f4-43b2-80b1-c9e625fe9c2f)

How to reproduce: 1. Run editor example 2. Paste or type in text with long lines that gets wrapped 3. Some lines aren't selectable, cursor jumps to end of the...

Running `cargo run -p widget-gallery` (or any of the other examples as far as I can tell) renders a window with the expected contents but the window does not respond...