mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-11-24 05:46:17 +03:00
27 lines
507 B
Text
27 lines
507 B
Text
|
using Gtk 4.0;
|
||
|
using Adw 1;
|
||
|
|
||
|
Adw.ApplicationWindow window {
|
||
|
default-width: 780;
|
||
|
default-height: 560;
|
||
|
|
||
|
content: Gtk.Box {
|
||
|
orientation: vertical;
|
||
|
|
||
|
Adw.HeaderBar {
|
||
|
title-widget: Adw.WindowTitle {
|
||
|
title: "An Anime Game Launcher";
|
||
|
};
|
||
|
}
|
||
|
|
||
|
Adw.Carousel carousel {
|
||
|
allow-mouse-drag: false;
|
||
|
}
|
||
|
|
||
|
Adw.CarouselIndicatorDots {
|
||
|
carousel: carousel;
|
||
|
height-request: 32;
|
||
|
}
|
||
|
};
|
||
|
}
|