This commit is contained in:
朱子楚\zhuzi
2024-03-09 15:35:48 +08:00
parent 2a03f24941
commit 7c0c4cc451
167 changed files with 7567 additions and 1816 deletions

View File

@ -7,7 +7,7 @@ import "../component"
FluScrollablePage{
title:"Text"
title: qsTr("Text")
FluArea{
Layout.fillWidth: true
@ -16,7 +16,7 @@ FluScrollablePage{
paddings: 10
FluCopyableText{
text: "这是一个可以支持复制的Text"
text: qsTr("This is a text that can be copied")
anchors.verticalCenter: parent.verticalCenter
}
@ -25,7 +25,7 @@ FluScrollablePage{
Layout.fillWidth: true
Layout.topMargin: -1
code:'FluCopyableText{
text:"这是一个可以支持复制的Text"
text: qsTr("This is a text that can be copied")
}'
}