ui icon indicating copy to clipboard operation
ui copied to clipboard

My UI Widget library for V

Results 10 ui issues
Sort by recently updated
recently updated
newest added

When I'm trying to compile, in particular, Vide, I get the following error: ``` .vmodules/iui/menu.v:201:7: error: unknown method or field: `iui.MenuItem.draw_event_fn`. 2 possibilities: `add_child`, `set_click`. 199 | }) 200 |...

How would one get changes to the dimensions of the ui.window? This is not shown in any of the examples.

Hi Isaiah, Would be great if a listbox widget was added. The issue with selectbox, is that sometimes you want people to see all or more of the options available....

Issue: Warnings during build (unix_time_milli, init private fields), in iUI modules' source Build Output (home path redacted, omitting warnings in my source to be addressed separately): ~/.vmodules/iui/src/ui.v:425:20: notice: method `time.Time.unix_time_milli`...

C:/fresh/v/editor/text_editor_app.v:24:4: warning: initalizing private field `click_event_fn` of `iui.MenuItemConfig` 22 | item := ui.MenuItem.new( 23 | text: theme.name 24 | click_event_fn: theme_click | ~~~~~~~~~~~~~~~~~~~~~~~~~~~ 25 | ) 26 | theme_menu.add_child(item) Details:...

This project is to good ! Better then vlang-ui ! Is there a plan to add table components?

If I don't want the window to show up in the top left corner every time and I want it to be displayed in the center instead, it seems it...

enhancement

``` $ v deneme.v /home/myururdurmaz/.vmodules/iui/src/component.v:38:24: error: `implements` lacks body 36 | 37 | @[heap] 38 | pub struct Component_A implements Component { | ~~~~~~~~~~ 39 | pub mut: 40 |...

I'd like to be able to something like this where `component` is the tab that we just switched to. ```v mut tabbox := ui.Tabbox.new( on_change: fn (tab_name string, mut component...

Pressing backspace button on MacOS replaces the last character with invalid character instead of removing character. Here is what happens when running examples/demo/ and pressing backspace. Before and after pressing...