Created
September 24, 2018 07:52
-
-
Save Lamartio/248922e3d6d17a397ad0609fcf3a1b1d to your computer and use it in GitHub Desktop.
BindingExample.kt
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
+textView { | |
text = "This is plain text" | |
bind { user -> text = "${user.name}: ${user.age}" } // User is the argument | |
bind { text = "$name: $age" } // User is the this-pointer | |
} | |
typealias Observer<T> = T.(T) -> Unit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment