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
Its Working
API Level 25 or below use this
var et_user_name = findViewById(R.id.et_user_name) as EditText
API Level 26 or Above use this
val et_user_name: EditText = findViewById(R.id.et_user_name)
Happy Coding !