2022-03-07 22:59:38 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
|
|
|
|
import utils 1.0
|
|
|
|
|
|
|
|
Page {
|
|
|
|
id: root
|
2022-05-03 07:28:16 +00:00
|
|
|
|
|
|
|
property alias backButtonVisible: backButton.visible
|
|
|
|
|
2022-03-07 22:59:38 +00:00
|
|
|
signal backClicked()
|
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
color: Style.current.background
|
|
|
|
}
|
|
|
|
|
|
|
|
StatusRoundButton {
|
2022-05-03 07:28:16 +00:00
|
|
|
id: backButton
|
2022-11-17 14:06:36 +00:00
|
|
|
objectName: "onboardingBackButton"
|
2022-03-07 22:59:38 +00:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: Style.current.padding
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.bottomMargin: Style.current.padding
|
|
|
|
icon.name: "arrow-left"
|
|
|
|
onClicked: {
|
|
|
|
root.backClicked();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|