feat: add link component
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
import QtQuick
|
||||
import QtQuick.Controls.Basic
|
||||
|
||||
Text {
|
||||
font.underline: true
|
||||
color: "blue"
|
||||
|
||||
signal clicked()
|
||||
|
||||
MouseArea {
|
||||
id: mouseArea
|
||||
anchors.fill: parent
|
||||
onClicked: parent.clicked()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user