I\'m trying to replicate the following ListView in my Android app using Kotlin: https://github.com/bidrohi/KotlinListView.
Unfortunately I\'m getting an error I\'m u
I would suggest you to use synthetics kotlin Android extension:
synthetics
https://kotlinlang.org/docs/tutorials/android-plugin.html
https://antonioleiva.com/kotlin-android-extensions/
In your case the code will be something like this:
init { this.label = row.label }
As simple as that ;)