30 lines
559 B
QML
30 lines
559 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Window
|
|
import QtQuick.Controls
|
|
import QtQuick.Controls.Basic
|
|
import QtQuick.Dialogs
|
|
import FluentUI
|
|
import "qrc:///AicsKnowledgeBase/qml/component"
|
|
import "qrc:///AicsKnowledgeBase/qml/global"
|
|
|
|
FluArea {
|
|
property string url: ''
|
|
backgroundColor: "#f9f9f9"
|
|
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
paddings: 10
|
|
Layout.topMargin: 20
|
|
|
|
FluText {
|
|
Layout.topMargin: 20
|
|
text: ""
|
|
}
|
|
|
|
FileList {
|
|
autoRequest: true
|
|
width: parent.width
|
|
}
|
|
}
|