FluentUI/example/qml/page/T_Typography.qml

95 lines
2.1 KiB
QML
Raw Normal View History

2023-03-30 21:52:55 +08:00
import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
import FluentUI
2023-02-26 23:47:07 +08:00
2023-03-10 18:08:32 +08:00
FluContentPage {
2023-03-09 23:11:59 +08:00
2023-03-10 18:08:32 +08:00
title: "Typography"
2023-03-29 21:43:01 +08:00
property int textSize: FluTheme.textSize
2023-03-28 17:53:46 +08:00
leftPadding:10
rightPadding:10
bottomPadding:20
2023-03-09 23:11:59 +08:00
2023-03-25 20:45:33 +08:00
Component.onCompleted: {
2023-03-29 21:43:01 +08:00
slider.seek(0)
2023-03-25 20:45:33 +08:00
}
2023-04-06 17:32:21 +08:00
FluArea{
anchors{
top:parent.top
left: parent.left
right: parent.right
bottom: parent.bottom
topMargin: 20
}
paddings: 10
2023-03-06 18:08:01 +08:00
ColumnLayout{
2023-03-09 23:11:59 +08:00
spacing: 0
2023-03-06 18:08:01 +08:00
FluText{
text:"Display"
2023-03-09 23:11:59 +08:00
padding: 0
pixelSize: textSize
2023-03-06 18:08:01 +08:00
fontStyle: FluText.Display
}
FluText{
text:"Title Large"
2023-03-09 23:11:59 +08:00
padding: 0
pixelSize: textSize
2023-03-06 18:08:01 +08:00
fontStyle: FluText.TitleLarge
}
FluText{
text:"Title"
2023-03-09 23:11:59 +08:00
padding: 0
pixelSize: textSize
2023-03-06 18:08:01 +08:00
fontStyle: FluText.Title
}
FluText{
text:"Subtitle"
2023-03-09 23:11:59 +08:00
padding: 0
pixelSize: textSize
2023-03-29 21:43:01 +08:00
fontStyle: FluText.SubTitle
2023-03-06 18:08:01 +08:00
}
FluText{
text:"Body Strong"
2023-03-09 23:11:59 +08:00
padding: 0
pixelSize: textSize
2023-03-06 18:08:01 +08:00
fontStyle: FluText.BodyStrong
}
FluText{
text:"Body"
2023-03-09 23:11:59 +08:00
padding: 0
pixelSize: textSize
2023-03-06 18:08:01 +08:00
fontStyle: FluText.Body
}
FluText{
text:"Caption"
2023-03-09 23:11:59 +08:00
padding: 0
pixelSize: textSize
2023-03-06 18:08:01 +08:00
fontStyle: FluText.Caption
}
2023-02-26 23:47:07 +08:00
}
2023-03-09 23:11:59 +08:00
2023-04-06 17:32:21 +08:00
FluSlider{
id:slider
vertical:true
anchors{
right: parent.right
rightMargin: 45
top: parent.top
topMargin: 30
}
onValueChanged:{
textSize = value/100*6+FluTheme.textSize
}
2023-03-09 23:11:59 +08:00
}
2023-04-06 17:32:21 +08:00
2023-03-09 23:11:59 +08:00
}
2023-04-06 17:32:21 +08:00
2023-02-26 23:47:07 +08:00
}