Skip to content

Instantly share code, notes, and snippets.

@Unlimity
Last active October 9, 2017 10:12
Show Gist options
  • Save Unlimity/3a860ea5b033283a46d0944729f8620a to your computer and use it in GitHub Desktop.
Save Unlimity/3a860ea5b033283a46d0944729f8620a to your computer and use it in GitHub Desktop.
open class TestActivityScreen: Screen<TestActivityScreen>() {
val content: KView = KView { withId(R.id.content) }
val map: KView = KView { withId(R.id.map) }
val button: KButton = KButton { withId(R.id.button) }
val textViewLarge: KTextView = KTextView {
withId(R.id.text_view_large)
}
val textViewSmall: KTextView = KTextView {
withId(R.id.text_view_small)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment