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

37 lines
681 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.StatusPage status_page {
icon-name: "image-loading-symbolic";
title: "Loading data";
vexpand: true;
}
Adw.Flap flap {
2022-06-28 21:59:20 +00:00
vexpand: true;
visible: false;
2022-06-28 21:59:20 +00:00
flap: Gtk.StackSidebar {
width-request: 200;
stack: stack;
};
content: Gtk.Stack stack {};
2022-06-28 21:59:20 +00:00
}
}