import QtQuick 2.0 import QtQuick.Controls 1.2 import "qrc:/qml/genericqml" Rectangle{ color:"white" width:infoBoxText.contentWidth height:infoBoxText.contentHeight Text{id:infoBoxText textFormat: Text.RichText wrapMode: Text.Wrap text: "Friendiqa v0.002
Licensed under GPL 3
"+ "Profile https://freunde.ma-nic.de/profile/friendiqa
"+ "Sourcecode: https://github.com/LubuWest/Friendica
"+ "C++ code by Fabio
"+ "QML and Javascript code by Marco" onLinkActivated:{ Qt.openUrlExternally(link)} } BlueButton{ text:qsTr("Close") onClicked:{configStack.pop()} anchors.top:infoBoxText.bottom } }