2024-08-23 00:04:16 +08:00
|
|
|
import QtQuick as Quick
|
2024-08-20 23:58:02 +08:00
|
|
|
|
2024-08-23 00:04:16 +08:00
|
|
|
import Fluent
|
|
|
|
|
|
|
|
Quick.Text {
|
|
|
|
property Quick.color textColor: FluTheme.fontPrimaryColor
|
|
|
|
id:text
|
|
|
|
color: textColor
|
|
|
|
renderType: FluTheme.nativeText ? Text.NativeRendering : Text.QtRendering
|
|
|
|
font: FluTextStyle.Body
|
2024-08-20 23:58:02 +08:00
|
|
|
}
|