Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. ApplicationWindow {
  2. visible: true
  3. width: 640
  4. height: 480
  5. title: qsTr("Hello World")
  6.  
  7. Item {
  8. anchors.fill: parent
  9. rotation: -90
  10.  
  11. SwipeView {
  12. id: swipeView
  13. anchors.fill: parent
  14. currentIndex: tabBar.currentIndex
  15.  
  16. Page1 {
  17. }
  18.  
  19. Page {
  20. Label {
  21. text: qsTr("Second page")
  22. anchors.centerIn: parent
  23. }
  24. }
  25. }
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement