11 lines
256 B
QML
11 lines
256 B
QML
import QtQuick as Quick
|
|
import Fluent
|
|
|
|
Quick.Text {
|
|
property Quick.color textColor: Theme.fontPrimaryColor
|
|
id:text
|
|
color: textColor
|
|
renderType: Theme.nativeText ? Text.NativeRendering : Text.QtRendering
|
|
font: TextStyle.Body
|
|
}
|