2022-12-23 11:32:21 +08:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Controls 2.0 as QQC2
|
|
|
|
|
|
|
|
Item {
|
|
|
|
Row {
|
|
|
|
anchors.fill: parent;
|
|
|
|
|
|
|
|
AppPage {
|
|
|
|
width: 300
|
|
|
|
height: parent.height;
|
|
|
|
}
|
|
|
|
|
|
|
|
Sidebar {
|
2023-01-03 11:00:52 +08:00
|
|
|
width: parent.width - 300;
|
2022-12-26 15:21:43 +08:00
|
|
|
height: parent.height;
|
|
|
|
}
|
2022-12-23 11:32:21 +08:00
|
|
|
}
|
|
|
|
}
|