diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-01-31 18:48:46 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-01-31 18:48:46 +0700 |
commit | f817603ebdf03b60a3a6f2ae6cf14281806ff085 (patch) | |
tree | 91acef8d447fe21dcf71935ff4e10fcb6fadd5f4 | |
parent | e3b77353b00ea9c5097f2ffee70f614bd0777a3d (diff) |
add passwordHelper label and move ColumnLayout spacing properly
-rw-r--r-- | SignInFlickable.ui.qml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/SignInFlickable.ui.qml b/SignInFlickable.ui.qml index 2cbbbdf..e32bb9b 100644 --- a/SignInFlickable.ui.qml +++ b/SignInFlickable.ui.qml @@ -11,9 +11,9 @@ GridLayout { ColumnLayout { Layout.rightMargin: 16 Layout.leftMargin: 16 - spacing: 16 ColumnLayout { + spacing: 16 ColumnLayout { Label { @@ -90,7 +90,12 @@ GridLayout { } } } - + Label { + id: passwordHelper + text: "Your password must atleast 8 characters long" + font.pixelSize: 12 + color: "#6c757d" + } Button { id: button text: qsTr("Login") |