diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-01-03 13:44:26 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-01-03 13:44:26 +0800 |
commit | 10e69b1157162fb8730a9d9a6d939025883270a5 (patch) | |
tree | a7960f7aae41a5f9e49f8f679650b6f89856f1e4 /SignInFlickable.ui.qml | |
parent | 4d2a61658e6f061688a40ace1909ac76e685ef3e (diff) |
Login button, and margins
Diffstat (limited to 'SignInFlickable.ui.qml')
-rw-r--r-- | SignInFlickable.ui.qml | 59 |
1 files changed, 34 insertions, 25 deletions
diff --git a/SignInFlickable.ui.qml b/SignInFlickable.ui.qml index 40a9bd2..30d3c8f 100644 --- a/SignInFlickable.ui.qml +++ b/SignInFlickable.ui.qml @@ -5,40 +5,49 @@ import QtQuick.Layouts 1.15 GridLayout { ColumnLayout { + Layout.margins: 15 ColumnLayout { - Label { - text: qsTr("Email address *") - } - RowLayout { - Image { - id: envelope - source: "Bootstrap/icons/envelope-fill.svg" + + ColumnLayout { + Label { + text: qsTr("Email address *") } - TextField { - placeholderText: qsTr("E-mail") - Layout.fillWidth: true + RowLayout { + Image { + id: envelope + source: "Bootstrap/icons/envelope-fill.svg" + } + TextField { + placeholderText: qsTr("E-mail") + Layout.fillWidth: true + } } } - } - ColumnLayout { - Label { - text: qsTr("Password *") - } - RowLayout { - Image { - source: "Font-Awesome/svgs/solid/lock.svg" - sourceSize { - width: envelope.height - height: envelope.height - } + ColumnLayout { + Label { + text: qsTr("Password *") } - TextField { - placeholderText: qsTr("password") - Layout.fillWidth: true + RowLayout { + Image { + source: "Font-Awesome/svgs/solid/lock.svg" + sourceSize { + width: envelope.height + height: envelope.height + } + } + TextField { + placeholderText: qsTr("password") + Layout.fillWidth: true + } } } + + Button { + text: qsTr("Login") + Layout.fillWidth: true + } } } } |