diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-01-31 19:20:30 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-01-31 19:20:30 +0700 |
commit | 329722393f240565a4f32894bc93dc2fc1755ac2 (patch) | |
tree | c4ed12f99b8687aa3247aea98cb8f94e03e23fdb | |
parent | a786cda76baf0abf78b2c5df56ff06c9558dfece (diff) |
add SignInTitle and SignInSubtitle
-rw-r--r-- | SignInFlickable.ui.qml | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/SignInFlickable.ui.qml b/SignInFlickable.ui.qml index 122721d..f832b22 100644 --- a/SignInFlickable.ui.qml +++ b/SignInFlickable.ui.qml @@ -14,7 +14,26 @@ GridLayout { ColumnLayout { spacing: 16 - + ColumnLayout { + id: columnLayout + Layout.fillWidth: true + + Label { + id: signInTitle + text: qsTr("Sign In Title") + font.family: "Roboto" + font.weight: Font.Medium + font.pointSize: 40 + } + + Label { + id: signInSubtitle + color: "#6c757d" + text: qsTr("Sign In Subtitle") + font.weight: Font.Normal + font.pointSize: 22 + } + } ColumnLayout { Label { text: qsTr("Email address *") |