Skip to content

Instantly share code, notes, and snippets.

@toerb
Created May 3, 2015 15:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toerb/94d3bd56f8a2451166c1 to your computer and use it in GitHub Desktop.
Save toerb/94d3bd56f8a2451166c1 to your computer and use it in GitHub Desktop.
import QtQuick 2.0
import Sailfish.Silica 1.0
Page {
id: page
allowedOrientations: Orientation.All
SilicaFlickable {
anchors.fill: parent
contentHeight: column.height
Column {
id: column
width: page.width
spacing: Theme.paddingLarge
Text {
anchors {
left: parent.left
right: parent.right
margins: Theme.paddingLarge
}
font.pixelSize: Theme.fontSizeSmall
color: Theme.primaryColor
textFormat: Text.RichText
linkColor: Theme.highlightColor
onLinkActivated: Qt.openUrlExternally(link)
wrapMode: Text.WordWrap
text: "some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText. some really long RichText."
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment