Skip to content

Instantly share code, notes, and snippets.

@juniorz
Created June 28, 2011 22:09
Show Gist options
  • Save juniorz/1052374 to your computer and use it in GitHub Desktop.
Save juniorz/1052374 to your computer and use it in GitHub Desktop.
Simple Wizard example
application "SimpleWizard" => org.android.example.wizard {
screen First {
# textView: "This is the first screen" {}
# button: "Next >" to Second {}
}
screen Second {
# textView: "And this is the second screen" {}
# button: "< Back" to First {}
# button: "Next >" to Third {}
}
screen Third {
# textView: "Now, the last one" {}
# button: "< Back" to Second {}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment