Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
PySide / examples / webkit / qml-webkit-plugin / HelloWorld.qml
Size: Mime:
import QtQuick 1.1

Rectangle {
    id: root
    width: 300
    height: 300
    color: "red"

    Text {
        text: "Hello World!"
        font.pixelSize: 30
        anchors.centerIn: parent

        NumberAnimation on rotation {
            from: 0
            to: 360
            duration: 2000
            loops: Animation.Infinite
        }
    }
}