Label {
id: message
text: model.message
width: parent.width
wrapMode: Text.WordWrap
textFormat: Text.RichText
x: Theme.horizontalPageMargin + Theme.paddingMedium
anchors {
top: parent.top
topMargin: Theme.paddingLarge
horizontalCenter: parent.hoizontalCenter
}
onLinkActivated: Qt.openUrlExternally(link)
Page {
SilicaWebView {
anchors.fill: parent
header: PageHeader { title: "Message view" }
url: ???
}
}
| The Following User Says Thank You to Markkyboy For This Useful Post: | ||
...
onLinkActivated: pageStack.push(Qt.resolvedUrl("MessageView.qml"), {"gotoUrl": link})
Page {
property string gotoUrl
SilicaWebView {
anchors.fill: parent
header: PageHeader { title: "Message view" }
url: gotoUrl
}
}
| The Following 5 Users Say Thank You to llelectronics For This Useful Post: | ||
...
onLinkActivated: pageStack.push(Qt.resolvedUrl("MessageView.qml"), {"gotoUrl": link})
Page {
property string gotoUrl
SilicaWebView {
anchors.fill: parent
header: PageHeader { title: "Message view" }
url: gotoUrl
}
}

| The Following 2 Users Say Thank You to Markkyboy For This Useful Post: | ||