summaryrefslogtreecommitdiff
path: root/pages/UsernameForm.ui.qml
diff options
context:
space:
mode:
authorAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2019-09-24 22:26:07 +0700
committerAnatasof Wirapraja <anatasof.wirapraja@gmail.com>2019-09-24 22:26:07 +0700
commit35fe3c15f3b8a562d866f40389a5a8124501636a (patch)
treede458de864a3c1f025c4c9dbde927d249ebf4294 /pages/UsernameForm.ui.qml
parenta570ecafaa7e1481778a35015776b6de6102da83 (diff)
parentf1251b08ee37f44998d5a20e7bfcce5e9c9e1cb5 (diff)
Merge branch 'master' of ssh://darapsa.co.id/usr/local/git/kelakon into development
* 'master' of ssh://darapsa.co.id/usr/local/git/kelakon: All forms and icons are moved to Larva Update qrtclient Reuse path
Diffstat (limited to 'pages/UsernameForm.ui.qml')
-rw-r--r--pages/UsernameForm.ui.qml35
1 files changed, 0 insertions, 35 deletions
diff --git a/pages/UsernameForm.ui.qml b/pages/UsernameForm.ui.qml
deleted file mode 100644
index 3771959..0000000
--- a/pages/UsernameForm.ui.qml
+++ /dev/null
@@ -1,35 +0,0 @@
-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")
- }
-}