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