Files

33 lines
616 B
QML
Raw Permalink Normal View History

2024-08-12 15:14:19 +02:00
import QtQuick 2.5
import fbx.application 1.0
2024-08-13 11:26:45 +02:00
import "Views" as View
2024-08-12 15:14:19 +02:00
Application {
2024-08-13 15:38:24 +02:00
Row {
2024-08-13 11:26:45 +02:00
anchors.fill: parent
spacing: 10
Rectangle {
2024-08-13 15:38:24 +02:00
width: parent.width / 3 - 5
2024-08-13 11:26:45 +02:00
height: parent.height
2024-08-13 15:38:24 +02:00
View.Logo {}
2024-08-13 11:26:45 +02:00
}
Rectangle {
2024-08-13 15:38:24 +02:00
width: parent.width / 3 * 2 - 5
2024-08-13 11:26:45 +02:00
height: parent.height
2024-08-13 15:38:24 +02:00
color: "#000B25"
2024-08-12 16:53:09 +02:00
2024-08-13 18:15:38 +02:00
focus: true
2024-08-13 15:38:24 +02:00
View.Login {}
2024-08-13 11:26:45 +02:00
}
2024-08-13 18:15:38 +02:00
Component.onCompleted: {
// Setup the login view to be focus on start
columnLogin.updateSelection();
}
2024-08-12 15:14:19 +02:00
}
}