Skip to content

Commit

Permalink
qml: OnboardingCover.qml, commented out the settings code since we a…
Browse files Browse the repository at this point in the history
…re now waiting for onboarding to finish before node init
  • Loading branch information
D33r-Gee committed Mar 12, 2024
1 parent afa62c0 commit 73c0774
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions src/qml/pages/onboarding/OnboardingCover.qml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import "../../controls"
import "../../components"
import "../settings"
// import "../settings"

Page {
background: null
Expand All @@ -18,19 +18,19 @@ Page {
interactive: false
orientation: Qt.Horizontal
InformationPage {
navRightDetail: NavButton {
iconSource: "image://images/info"
iconHeight: 24
iconWidth: 24
iconColor: Theme.color.neutral0
iconBackground: Rectangle {
radius: 12
color: Theme.color.neutral9
}
onClicked: {
introductions.incrementCurrentIndex()
}
}
// navRightDetail: NavButton {
// iconSource: "image://images/info"
// iconHeight: 24
// iconWidth: 24
// iconColor: Theme.color.neutral0
// iconBackground: Rectangle {
// radius: 12
// color: Theme.color.neutral9
// }
// onClicked: {
// introductions.incrementCurrentIndex()
// }
// }
bannerItem: Image {
Layout.fillWidth: true
Layout.alignment: Qt.AlignCenter
Expand All @@ -49,14 +49,14 @@ Page {
subtext: qsTr("100% open-source & open-design")
buttonText: qsTr("Start")
}
SettingsAbout {
navLeftDetail: NavButton {
iconSource: "image://images/caret-left"
text: qsTr("Back")
onClicked: {
introductions.decrementCurrentIndex()
}
}
}
// SettingsAbout {
// navLeftDetail: NavButton {
// iconSource: "image://images/caret-left"
// text: qsTr("Back")
// onClicked: {
// introductions.decrementCurrentIndex()
// }
// }
// }
}
}

0 comments on commit 73c0774

Please sign in to comment.