Skip to content

Instantly share code, notes, and snippets.

@alparslandev
Last active November 11, 2019 14:29
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 alparslandev/3e62219a398f9daba916380bbc9ebe4b to your computer and use it in GitHub Desktop.
Save alparslandev/3e62219a398f9daba916380bbc9ebe4b to your computer and use it in GitHub Desktop.
//Imperative
val button = Button()
button.text = "click me"
val layout = Layout()
layout.add(button)
// Declerative
Layout {
Button("click me")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment