Add Adw.Breakpoint custom syntax

This commit is contained in:
James Westman 2023-04-25 19:43:22 -05:00
parent aafebf0dfb
commit 8fcd08c835
12 changed files with 264 additions and 11 deletions

View file

@ -0,0 +1,13 @@
using Gtk 4.0;
using Adw 1;
Gtk.Label label {}
Adw.Breakpoint {
condition ("max-width: 600px")
setters {
label.label: _("Hello, world!");
label.visible: false;
label.extra-menu: null;
}
}