Skip to content

Instantly share code, notes, and snippets.

@stanch
Created December 1, 2013 11:22
Show Gist options
  • Save stanch/7732292 to your computer and use it in GitHub Desktop.
Save stanch/7732292 to your computer and use it in GitHub Desktop.
// 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