32 lines
470 B
QML
32 lines
470 B
QML
|
import QtQuick
|
||
|
import QtQuick.Layouts
|
||
|
import QtQuick.Window
|
||
|
import QtQuick.Controls
|
||
|
import QtQuick.Controls.Basic
|
||
|
import FluentUI
|
||
|
|
||
|
FluArea{
|
||
|
property string url: ''
|
||
|
|
||
|
Layout.fillWidth: true
|
||
|
Layout.fillHeight: true
|
||
|
paddings: 10
|
||
|
Layout.topMargin: 20
|
||
|
|
||
|
FluText{
|
||
|
Layout.topMargin: 20
|
||
|
text:"Home"
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
//FluScrollablePage{
|
||
|
// Rectangle {
|
||
|
// Layout.fillWidth: true
|
||
|
// height: 200
|
||
|
// color: "red"
|
||
|
// }
|
||
|
//}
|
||
|
|
||
|
|