Skip to content

Instantly share code, notes, and snippets.

@CodingDoug
Created February 22, 2016 18:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CodingDoug/3961d2ccc55376cf1274 to your computer and use it in GitHub Desktop.
Save CodingDoug/3961d2ccc55376cf1274 to your computer and use it in GitHub Desktop.
v<LinearLayout> {
layoutParams = LayoutParams(WRAP_CONTENT, WRAP_CONTENT)
orientation = VERTICAL
v<TextView> {
layoutParams = LayoutParams(WRAP_CONTENT, WRAP_CONTENT)
text = "Hello"
}
v<TextView> {
layoutParams = LayoutParams(WRAP_CONTENT, WRAP_CONTENT)
text = "World"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment