Created
April 23, 2019 11:18
-
-
Save rominf/9a15cad702b509dde30a9eaecbda4a8a to your computer and use it in GitHub Desktop.
ServerSelectionPage.qml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rectangle { | |
anchors.fill: context; | |
color: "#000"; | |
Column { | |
anchors.fill: parent; | |
spacing: 10; | |
Row { | |
anchors.centerIn: parent; | |
spacing: 8; | |
Text { | |
text: "Server URL:"; | |
color: "#fff"; | |
} | |
TextInput { | |
id: serverUrl; | |
} | |
} | |
Row { | |
anchors.centerIn: parent; | |
spacing: 8; | |
Text { | |
text: "User:"; | |
color: "#fff"; | |
} | |
TextInput { | |
id: user; | |
} | |
} | |
Row { | |
anchors.centerIn: parent; | |
spacing: 8; | |
Text { | |
text: "Password:"; | |
color: "#fff"; | |
} | |
TextInput { | |
id: password; | |
passwordMode: true; | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment