obliteration/gui/ui/setup/intro.slint
2024-11-30 13:56:46 +01:00

33 lines
844 B
Text

import { VerticalBox, Button } from "std-widgets.slint";
import { Header } from "header.slint";
export component Intro {
pure callback get-dumper();
VerticalBox {
Header {
title: "Introduction";
}
Text {
text: "This wizard will help you setup Obliteration. To ensure you're ready, make sure you have a firmware dumped from your PlayStation 4 using the Firmware Dumper.";
wrap: word-wrap;
}
VerticalLayout {
vertical-stretch: 1;
alignment: center;
HorizontalLayout {
alignment: center;
Button {
text: "Get Firmware Dumper";
clicked => {
get-dumper();
}
}
}
}
}
}