diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-15 21:33:57 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-15 21:33:57 +0800 |
commit | 380c349961d9ec18924b8bda1626b1a68883e245 (patch) | |
tree | b994703b71eb49a74193f7ad6df34b66881b6d94 /pages/UsernameForm.ui.qml | |
parent | d4bb75b2e5e11c3ac2b0393a0ef103f7d40dad86 (diff) | |
parent | bc1956d78c88ef31824a915134f5cdd56fb08914 (diff) |
Merge remote-tracking branch 'github/development'
Diffstat (limited to 'pages/UsernameForm.ui.qml')
-rw-r--r-- | pages/UsernameForm.ui.qml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/pages/UsernameForm.ui.qml b/pages/UsernameForm.ui.qml new file mode 100644 index 0000000..3771959 --- /dev/null +++ b/pages/UsernameForm.ui.qml @@ -0,0 +1,35 @@ +import QtQuick 2.12 +import QtQuick.Controls 2.12 +import QtQuick.Layouts 1.12 + +RowLayout { + + id: userName + width: fillWidth + height: 54 + anchors.topMargin: 8 + anchors.right: parent.right + anchors.rightMargin: 0 + anchors.left: parent.left + anchors.leftMargin: 0 + spacing: 16 + + Image { + id: icon + width: 24 + height: 24 + Layout.leftMargin: 16 + Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter + fillMode: Image.PreserveAspectFit + source: "../assets/user-24px.svg" + } + + TextField { + id: textField + Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter + font.pointSize: 16 + font.family: "Google Sans" + Layout.fillWidth: true + placeholderText: qsTr("Username") + } +} |