Skip to content

Instantly share code, notes, and snippets.

@rominf
Created April 23, 2019 11:18
Show Gist options
  • Save rominf/9a15cad702b509dde30a9eaecbda4a8a to your computer and use it in GitHub Desktop.
Save rominf/9a15cad702b509dde30a9eaecbda4a8a to your computer and use it in GitHub Desktop.
ServerSelectionPage.qml
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