the-honkers-railway-launcher/assets/ui/preferences.blp

30 lines
549 B
Text
Raw Normal View History

2022-06-28 21:59:20 +00:00
using Gtk 4.0;
using Adw 1;
Gtk.Box preferences {
orientation: vertical;
Adw.HeaderBar {
title-widget: Adw.WindowTitle {
title: "Preferences";
};
Gtk.Button preferences_go_back {
icon-name: "go-previous-symbolic";
halign: start;
}
}
Adw.Flap {
vexpand: true;
flap: Gtk.StackSidebar {
width-request: 200;
stack: stack;
};
separator: Gtk.Separator {};
content: Gtk.Stack stack {};
2022-06-28 21:59:20 +00:00
}
}