Advertisement
Guest User

Sailfish radiot.fi "client"

a guest
Jul 6th, 2015
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. import QtQuick 2.0
  2. import Sailfish.Silica 1.0
  3.  
  4. Page {
  5. SilicaWebView {
  6. id: webView
  7. PullDownMenu {
  8. MenuItem {
  9. text: "Takaisin etusivulle/Back to the front page"
  10. onClicked: webView.url = "http://radiot.fi"
  11. }
  12. }
  13.  
  14. anchors {
  15. top: parent.top
  16. left: parent.left
  17. right: parent.right
  18. bottom: parent.bottom
  19. }
  20. url: "http://radiot.fi"
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement