Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Page {
- Rectangle {
- color: "#00aaff"
- id: headerRect
- width: 854
- height: 72
- Text
- {
- color: "#ffffff"
- font.pointSize: 24
- x: 12
- y: 20
- font.weight: Font.Light
- text: "Orbiter"
- }
- }
- Flickable {
- anchors.fill: parent
- flickableDirection: Flickable.VerticalFlick
- Flow {
- anchors.margins: 16
- anchors.topMargin: 84
- spacing: 16
- id: mainFlow
- anchors.fill: parent
- Image {
- id: splashImage
- source: "../../../img/LinuxMCE.png"
- }
- Flow {
- anchors.margins: 16
- flow: Flow.TopToBottom
- spacing: 16
- Label {
- verticalAlignment: Text.AlignVCenter
- text: "Router Address:"
- }
- TextField {
- id: sIPAddress
- text: "192.168.80.1"
- width: 350
- }
- Label {
- verticalAlignment: Text.AlignVCenter
- text: "Device ID:"
- }
- TextField {
- id: sDeviceID
- text: "90"
- width: 350
- }
- Button {
- id: buttonConnect
- text: "Connect"
- width: 350
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement