blueprint-compiler/tests/samples/adw_breakpoint.blp
2023-05-08 10:11:40 -05:00

13 lines
No EOL
207 B
Text

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;
}
}