mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-04-18 16:08:34 +08:00
12 lines
260 B
QML
12 lines
260 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import FluentUI
|
|
|
|
Text {
|
|
property color textColor: FluTheme.fontPrimaryColor
|
|
id:text
|
|
color: textColor
|
|
renderType: FluTheme.nativeText ? Text.NativeRendering : Text.QtRendering
|
|
font: FluTextStyle.Body
|
|
}
|