Files
amnezia-client/client/ui/qml/Pages/PageBase.qml
T

17 lines
274 B
QML
Raw Normal View History

2021-08-19 01:27:22 +03:00
import QtQuick 2.12
import QtQuick.Controls 2.12
2021-09-14 00:39:07 +03:00
import PageEnum 1.0
2021-08-19 01:27:22 +03:00
import "./"
import "../Controls"
import "../Config"
Item {
id: root
2021-09-19 14:31:38 +03:00
property var page: PageEnum.Start
2021-09-16 19:49:50 +03:00
property var logic: UiLogic
2021-08-19 01:27:22 +03:00
// width: GC.screenWidth
// height: GC.screenHeight
}