33 lines
616 B
QML
33 lines
616 B
QML
import QtQuick 2.5
|
|
import fbx.application 1.0
|
|
import "Views" as View
|
|
|
|
Application {
|
|
Row {
|
|
anchors.fill: parent
|
|
spacing: 10
|
|
|
|
Rectangle {
|
|
width: parent.width / 3 - 5
|
|
height: parent.height
|
|
|
|
View.Logo {}
|
|
}
|
|
Rectangle {
|
|
width: parent.width / 3 * 2 - 5
|
|
height: parent.height
|
|
|
|
color: "#000B25"
|
|
|
|
focus: true
|
|
|
|
View.Login {}
|
|
}
|
|
|
|
Component.onCompleted: {
|
|
// Setup the login view to be focus on start
|
|
columnLogin.updateSelection();
|
|
}
|
|
}
|
|
}
|