Skip to content

Instantly share code, notes, and snippets.

@stanch
Created November 5, 2013 07:15
Show Gist options
  • Save stanch/7315111 to your computer and use it in GitHub Desktop.
Save stanch/7315111 to your computer and use it in GitHub Desktop.
// deep search inside myLayout
myLayout ~~> {
// make all buttons have medium-sized text
case b: Button ⇒ b ~> TextSize.medium
// find layouts consisting of just ImageView and TextView
case Layout(m: ImageView, t: TextView) ⇒
t ~> text("I’m next to an image")
// hide everything else
case otherStuff ⇒ otherStuff ~> hide
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment