diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-19 21:29:10 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-19 21:29:10 +0700 |
commit | 70b8f0560838adc857e74b7fc6f7750fa219d397 (patch) | |
tree | 8757bdb64ac3944cef05244dc358fcfd7181d30d /features/OnboardingForm.ui.qml | |
parent | bb4ccd23918e15c9f80f27fe59153bae3abb1452 (diff) |
fixed layout
Diffstat (limited to 'features/OnboardingForm.ui.qml')
-rw-r--r-- | features/OnboardingForm.ui.qml | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/features/OnboardingForm.ui.qml b/features/OnboardingForm.ui.qml index 90c3dd8..c23daf2 100644 --- a/features/OnboardingForm.ui.qml +++ b/features/OnboardingForm.ui.qml @@ -25,15 +25,15 @@ Page { anchors.leftMargin: 0 background: Rectangle { - color: "#9AFAFAFA" + color: "#9AFFFFFF" } RowLayout { anchors.fill: parent Image { id: logoImage - width: 100 - height: 24 + Layout.preferredHeight: 24 + Layout.preferredWidth: 100 fillMode: Image.PreserveAspectFit Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter Layout.fillWidth: false @@ -45,19 +45,14 @@ Page { StackView { id: contentView - anchors.top: toolBar.bottom - anchors.right: parent.right - anchors.bottom: parent.bottom - anchors.left: parent.left - anchors.topMargin: 0 + anchors.fill: parent z: -1 Image { id: onboardingImage anchors.bottom: onboardingText1.top anchors.bottomMargin: 32 - anchors.top: parent.top - anchors.topMargin: 32 + anchors.topMargin: 32 + toolBar.height anchors.right: parent.right anchors.rightMargin: 64 anchors.left: parent.left @@ -96,7 +91,6 @@ Page { RoundButton { id: loginButton - y: 406 flat: true highlighted: false Material.foreground: Material.primary |