1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
using Gtk 4.0;
template $Window: $AdwApplicationWindow {
title: _("Saldo");
default-width: "1024";
default-height: "640";
close-request => $_on_close_request();
$AdwToastOverlay _toast_overlay {
child: Stack _main_view {
transition-type: slide_left_right;
vexpand: true;
StackPage {
name: "welcome";
child: $AdwBin _welcome_bin {};
}
StackPage {
name: "create_safe";
child: $AdwBin _create_safe_bin {};
}
StackPage {
name: "locked";
child: $AdwBin _locked_bin {};
}
StackPage {
name: "unlocked";
child: $AdwBin _unlocked_bin {};
}
};
}
}
|