generated from OBJNULL/Dockerized-Rust
Created basic app menu
This commit is contained in:
parent
0bc13eb471
commit
5bedf0fab9
1 changed files with 21 additions and 0 deletions
21
project/ui/app.slint
Normal file
21
project/ui/app.slint
Normal file
|
@ -0,0 +1,21 @@
|
|||
import { Button, VerticalBox, HorizontalBox } from "std-widgets.slint";
|
||||
|
||||
export component Prorater inherits Window {
|
||||
title: "Auto Spa Express - Prorater";
|
||||
width: 1024px;
|
||||
height: 720px;
|
||||
|
||||
VerticalBox {
|
||||
Image {
|
||||
source: @image-url("../data/logo.png");
|
||||
width: 25%;
|
||||
height: 25%;
|
||||
}
|
||||
|
||||
Text {
|
||||
text: "Auto Spa Express - Prorate Tool";
|
||||
font-size: 4rem;
|
||||
horizontal-alignment: center;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue