mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-24 03:30:59 +08:00
35 lines
649 B
QML
35 lines
649 B
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import QtQuick.Window 2.15
|
|
import QtQuick.Controls 2.15
|
|
import FluentUI 1.0
|
|
import "../component"
|
|
|
|
FluScrollablePage {
|
|
|
|
title: qsTr("RatingControl")
|
|
|
|
FluFrame {
|
|
Layout.fillWidth: true
|
|
Layout.preferredHeight: 100
|
|
padding: 10
|
|
|
|
Column {
|
|
spacing: 10
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
FluRatingControl {}
|
|
FluRatingControl {
|
|
number: 10
|
|
}
|
|
}
|
|
}
|
|
|
|
CodeExpander {
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: -6
|
|
code: 'FluRatingControl{
|
|
|
|
}'
|
|
}
|
|
}
|