33 lines
849 B
Plaintext
33 lines
849 B
Plaintext
import { AboutSlint } from "std-widgets.slint";
|
|
export component AboutTab {
|
|
in property <string> version;
|
|
y: 0px;
|
|
VerticalLayout {
|
|
padding: 8px;
|
|
alignment: start;
|
|
Text {
|
|
font-size: 24pt;
|
|
text: "TIM_Tool Version " + root.version;
|
|
horizontal-alignment: center;
|
|
}
|
|
Image {
|
|
source: @image-url("../assets/TimTool64x64.png");
|
|
image-rendering: pixelated;
|
|
}
|
|
Text {
|
|
font-size: 20pt;
|
|
text: "Part of JabyEngine";
|
|
horizontal-alignment: center;
|
|
}
|
|
Text {
|
|
font-size: 16pt;
|
|
text: "MIT License";
|
|
horizontal-alignment: center;
|
|
}
|
|
Text {
|
|
font-size: 16pt;
|
|
text: " ";
|
|
}
|
|
AboutSlint {}
|
|
}
|
|
} |