2023-08-24 15:50:37 +08:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
|
|
|
import QtQuick.Layouts
|
|
|
|
import QtQuick.Window
|
|
|
|
import FluentUI
|
2024-01-25 17:26:50 +08:00
|
|
|
import "../component"
|
2023-08-24 15:50:37 +08:00
|
|
|
|
|
|
|
FluScrollablePage{
|
|
|
|
|
2024-03-09 15:35:48 +08:00
|
|
|
title: qsTr("Text")
|
2023-08-24 15:50:37 +08:00
|
|
|
|
|
|
|
FluArea{
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.topMargin: 20
|
|
|
|
height: 60
|
|
|
|
paddings: 10
|
|
|
|
|
|
|
|
FluCopyableText{
|
2024-03-09 15:35:48 +08:00
|
|
|
text: qsTr("This is a text that can be copied")
|
2023-08-24 15:50:37 +08:00
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
CodeExpander{
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.topMargin: -1
|
|
|
|
code:'FluCopyableText{
|
2024-03-09 15:35:48 +08:00
|
|
|
text: qsTr("This is a text that can be copied")
|
2023-08-24 15:50:37 +08:00
|
|
|
}'
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|