26 lines
641 B
QML
26 lines
641 B
QML
import QtQuick 2.15
|
|
import QtQuick.Window 2.15
|
|
import QtQuick.Controls 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import QtGraphicalEffects 1.15
|
|
import FluentUI 1.0
|
|
|
|
Window {
|
|
id:app
|
|
color: "#00000000"
|
|
Component.onCompleted: {
|
|
FluApp.init(app,properties)
|
|
FluTheme.frameless = ("windows" === Qt.platform.os)
|
|
FluTheme.dark = false
|
|
FluApp.routes = {
|
|
"/":"qrc:/page/MainPage.qml",
|
|
"/about":"qrc:/page/AboutPage.qml",
|
|
"/login":"qrc:/page/LoginPage.qml",
|
|
"/chat":"qrc:/page/ChatPage.qml",
|
|
}
|
|
FluApp.initialRoute = "/"
|
|
FluApp.run()
|
|
}
|
|
|
|
}
|