Advertisement
Guest User

Sailfish problems

a guest
Jul 23rd, 2013
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. import Sailfish.Silica 1.0
  2. import QtQuick 1.1
  3.  
  4.  
  5. Page {
  6. id: page
  7.  
  8. SilicaFlickable {
  9. id: flick3
  10. anchors.fill: parent
  11. Column {
  12. width: page.width
  13. spacing: theme.paddingLarge
  14. Button {
  15. id: button
  16. text: "choose a time"
  17.  
  18. onClicked: pageStack.openDialog("Sailfish.Silica.TimePickerDialog", {
  19. hour: 13,
  20. minute: 30,
  21. hourMode: DateTime.TwentyFourHours,
  22. onAccepted: (
  23. {button:text = "You chose: "}
  24. )
  25. })
  26. }
  27. }
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement