Async requests in Kotlin Android

I often get an error android.os.NetworkOnMainThreadException, when I try get info from some api. I know that this problem is related to the main android thread, but I don’t understand how to solve it – coroutines, async okhttp, or both? P.S I have a bad eng, sorry. My code: MainAtivity.kt class MainActivity: AppCompatActivity(), Alert {… Read More Async requests in Kotlin Android

Show trailing icon after text input from user in TextField Jetpack Compose

I am trying to: make the trailingIcon of TextField composable visible only if the user enters some text other than white spaces. Later when the user clicks the trailingIcon the text in the TextField should get cleared and the trailingIcon should disappear. Again when the user enters a text other than space, the trailingIcon should… Read More Show trailing icon after text input from user in TextField Jetpack Compose