13 lines
190 B
QML
13 lines
190 B
QML
import QtQuick 2.15
|
|
|
|
Item {
|
|
Text {
|
|
anchors.centerIn: parent
|
|
id: id_lm_tooltip_text
|
|
text: "Home Page"
|
|
font.pixelSize: 20
|
|
color: "#0e0606"
|
|
}
|
|
|
|
}
|