Advertisement
Guest User

Untitled

a guest
Dec 21st, 2013
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. Page {
  2. id: page
  3.  
  4. SilicaListView {
  5. id: listView
  6. model: 20
  7. anchors.fill: parent
  8. header: PageHeader {
  9. id: header
  10. title: "Required Settings"
  11. }
  12.  
  13. VerticalScrollDecorator {}
  14.  
  15. Column {
  16. id: settings
  17. anchors.top: header.bottom
  18.  
  19. TextField {
  20. id: gateway
  21. anchors.top: header.bottom
  22. width: 480
  23. placeholderText: "Gateway"
  24. }
  25.  
  26. TextField {
  27. id: test
  28. anchors.top: gateway.bottom
  29. width: 480
  30. placeholderText: "Gateway"
  31. }
  32. }
  33. }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement