33 lines
525 B
QML
33 lines
525 B
QML
|
import QtQuick 2.15
|
|||
|
import QtQuick.Controls 2.15
|
|||
|
import QtQuick.Layouts 1.15
|
|||
|
import QtQuick.Window 2.15
|
|||
|
import QtGraphicalEffects 1.15
|
|||
|
import FluentUI 1.0
|
|||
|
|
|||
|
FluScrollablePage{
|
|||
|
|
|||
|
title:"ColorPicker"
|
|||
|
|
|||
|
FluArea{
|
|||
|
width: parent.width
|
|||
|
height: 280
|
|||
|
Layout.topMargin: 20
|
|||
|
paddings: 10
|
|||
|
ColumnLayout{
|
|||
|
anchors{
|
|||
|
verticalCenter: parent.verticalCenter
|
|||
|
left:parent.left
|
|||
|
}
|
|||
|
|
|||
|
FluMediaPlayer{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
|