mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
80bb09cc67
- Added specific `bdd_hooks.py` for `tst_passwordStrength`. - Updated `tst_passwordStrength` screenshots (now taken when input is focused). - Restored `tst_statusLoginPassword` scenarios. - `tst_statusSignUp` will only contain positive signup test case. - Created new test case tst_signUpSeedPhraseNegativeCases`. - Created new test case `tst_signUpNegativeCases` with specific `bdd_hooks.py`. Closes #8013
32 lines
644 B
QML
32 lines
644 B
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
import utils 1.0
|
|
|
|
Page {
|
|
id: root
|
|
|
|
property alias backButtonVisible: backButton.visible
|
|
|
|
signal backClicked()
|
|
|
|
background: Rectangle {
|
|
color: Style.current.background
|
|
}
|
|
|
|
StatusRoundButton {
|
|
id: backButton
|
|
objectName: "onboardingBackButton"
|
|
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();
|
|
}
|
|
}
|
|
}
|