Skip to content

Instantly share code, notes, and snippets.

@adam-arold
Created January 11, 2019 23:36
Show Gist options
  • Save adam-arold/cf5b92d7a5237c405ae4d58e62cd323a to your computer and use it in GitHub Desktop.
Save adam-arold/cf5b92d7a5237c405ae4d58e62cd323a to your computer and use it in GitHub Desktop.
class MyComponent(
val children: Iterable<Component>, // 1
internal val drawSurface: DrawSurface) { // 2
fun requestFocus() {
}
fun clearFocus() {
}
internal fun render() {
}
internal fun attachTo(container: Container) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment