diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-02-01 12:14:37 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-02-01 12:14:37 +0700 |
commit | f671080d10e70395741762c73e8d539e56f20b0b (patch) | |
tree | 2826fe0c2289ffb08b133e5c14e19cc8b53b5c78 /SignUpFlickable.ui.qml | |
parent | 329722393f240565a4f32894bc93dc2fc1755ac2 (diff) |
add signUpTitle and signUpSubtitle
Diffstat (limited to 'SignUpFlickable.ui.qml')
-rw-r--r-- | SignUpFlickable.ui.qml | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/SignUpFlickable.ui.qml b/SignUpFlickable.ui.qml index 375faa4..7a8220c 100644 --- a/SignUpFlickable.ui.qml +++ b/SignUpFlickable.ui.qml @@ -10,10 +10,30 @@ GridLayout { property alias signUpSignIn: signIn ColumnLayout { - Layout.margins: 15 + Layout.margins: 16 ColumnLayout { - + spacing: 16 + ColumnLayout { + id: columnLayout + Layout.fillWidth: true + + Label { + id: signUpTitle + text: qsTr("Sign Up Title") + font.family: "Roboto" + font.weight: Font.Medium + font.pointSize: 40 + } + + Label { + id: signUpSubtitle + color: "#6c757d" + text: qsTr("Sign Up Subtitle") + font.weight: Font.Normal + font.pointSize: 22 + } + } ColumnLayout { Label { text: qsTr("Email address *") |