--- a/application/main.c Wed Oct 08 10:41:35 2025 +0200 +++ b/application/main.c Wed Oct 08 12:36:16 2025 +0200 @@ -1125,7 +1125,13 @@ void application_startup(UiEvent *event, void *data) { UiObject *obj = ui_window("Test w32", NULL); - ui_button(obj, .label = "Test"); + ui_button(obj, .label = "Test", .hfill = TRUE, .hexpand = TRUE, .colspan = 3, .margin = 10); + ui_newline(obj); + ui_button(obj, .label = "Test 2-1", .margin_top = 10); + ui_button(obj, .label = "Test 2-2", .hfill = TRUE, .hexpand = TRUE, .margin_top = 20); + ui_button(obj, .label = "Test 2-3", .margin_top = 30); + ui_newline(obj); + ui_button(obj, .label = "Test 3", .colspan = 3, .fill = TRUE); ui_show(obj); }