Guest User

Untitled

a guest
Mar 7th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.40 KB | None | 0 0
  1. import QtQuick 2.0
  2. import Sailfish.Silica 1.0
  3. import QtWebKit.experimental 1.0
  4.  
  5. Page {
  6.     id: page
  7.  
  8.     SilicaWebView {
  9.         id: webView
  10.         anchors.fill: parent
  11.         url: spotifyWrapper.spotifyPlayer
  12.         experimental.preferences.developerExtrasEnabled: true
  13.  
  14.         Connections {
  15.             target: spotifyWrapper
  16.             onTokenChanged: webView.reload()
  17.         }
  18.     }
  19. }
Add Comment
Please, Sign In to add comment