3 questions
4
votes
1
answer
1k
views
Composable throws "kotlin.NotImplementedError: An operation is not implemented: Unknown file" compile error
I wish to have an interface which has a composable function Show like this in Android project feature module A.
interface AInterface {
@Composable
fun Show(modifier: Modifier = Modifier)
}
...
4
votes
1
answer
4k
views
kotlin.NotImplementedError: An operation is not implemented with addTextChangedListenerher on EditText
When I call addTextChangedListener(textWacther) on my EditText and try to run the app, it just closes when something entered in that field.
Isn't my way of enabling the button back correct?
class ...
59
votes
4
answers
59k
views
kotlin.NotImplementedError: An operation is not implemented: not implemented Error from ImageButton Click
Getting this Error
kotlin.NotImplementedError: An operation is not implemented: not implemented
I am implementing an ImageButton click listener
Requirement :- I want to perform an action on ...