Created
June 28, 2011 22:09
-
-
Save juniorz/1052374 to your computer and use it in GitHub Desktop.
Simple Wizard example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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