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

29 lines
610 B
Text
Raw Normal View History

2022-07-27 15:37:52 +00:00
using Gtk 4.0;
using Adw 1;
Adw.ApplicationWindow window {
default-width: 780;
default-height: 560;
content: Adw.ToastOverlay toast_overlay {
2022-08-05 20:59:41 +00:00
Gtk.Box {
orientation: vertical;
2022-07-27 15:37:52 +00:00
2022-08-05 20:59:41 +00:00
Adw.HeaderBar {
title-widget: Adw.WindowTitle {
title: "An Anime Game Launcher";
};
}
Adw.Carousel carousel {
allow-mouse-drag: false;
}
2022-07-27 15:37:52 +00:00
2022-08-05 20:59:41 +00:00
Adw.CarouselIndicatorDots {
carousel: carousel;
height-request: 32;
}
2022-07-27 15:37:52 +00:00
}
};
}