mirror of
https://github.com/obhq/obliteration.git
synced 2025-04-02 11:02:08 -04:00
33 lines
844 B
Text
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();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|