This commit is contained in:
zhuzihcu
2023-03-24 15:21:47 +08:00
parent 1f1e8b0ed0
commit d8d95399cd
9 changed files with 77 additions and 8 deletions

32
example/T_MediaPlayer.qml Normal file
View File

@ -0,0 +1,32 @@
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{
}
}
}
}

View File

@ -1,4 +1,4 @@
QT += quick concurrent network
QT += quick concurrent network multimedia
CONFIG += c++11
DEFINES += QT_DEPRECATED_WARNINGS QT_NO_WARNING_OUTPUT

View File

@ -35,7 +35,7 @@ FluWindow {
fontStyle: FluText.Title
}
FluText{
text:"v1.1.3"
text:"v1.1.4"
fontStyle: FluText.Body
Layout.alignment: Qt.AlignBottom
}

View File

@ -200,6 +200,17 @@ FluWindow {
}
}
FluPaneItemHeader{
title:"Media"
}
FluPaneItem{
title:"MediaPlayer"
onTap:{
nav_view.push("qrc:/T_MediaPlayer.qml")
}
}
}
FluObject{

View File

@ -44,5 +44,6 @@
<file>T_CalendarPicker.qml</file>
<file>T_ColorPicker.qml</file>
<file>T_Carousel.qml</file>
<file>T_MediaPlayer.qml</file>
</qresource>
</RCC>