generated from OBJNULL/Dockerized-Rust
21 lines
501 B
Text
21 lines
501 B
Text
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;
|
|
}
|
|
}
|
|
}
|