12 lines
267 B
QML
12 lines
267 B
QML
import QtQuick as Quick
|
|
|
|
import Fluent
|
|
|
|
Quick.Text {
|
|
property Quick.color textColor: FluTheme.fontPrimaryColor
|
|
id:text
|
|
color: textColor
|
|
renderType: FluTheme.nativeText ? Text.NativeRendering : Text.QtRendering
|
|
font: FluTextStyle.Body
|
|
}
|