Created
November 5, 2013 07:15
-
-
Save stanch/7315111 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
// 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