forked from qt-creator/qt-creator
9 lines
116 B
QML
9 lines
116 B
QML
|
|
import QtQuick 2.15
|
||
|
|
|
||
|
|
Item {
|
||
|
|
component CustomText: Text {
|
||
|
|
color: "red"
|
||
|
|
text: "Test Text"
|
||
|
|
}
|
||
|
|
}
|