Created
December 1, 2013 11:22
-
-
Save stanch/7732292 to your computer and use it in GitHub Desktop.
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
// use with Options: | |
var maybeTweak: Option[Tweak[TextView]] = Some(text("Hi")) | |
myTextView ~> maybeTweak // this will set the text | |
maybeTweak = None | |
myTextView ~> maybeTweak // this will be ignored | |
// use with Futures: | |
val showInASecond = future { | |
Thread.sleep(1000) | |
show | |
} | |
myTextView ~> hide ~> showInASecond |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment