Can anyone recommend me a tutorial where I can do ...
# android
m
Can anyone recommend me a tutorial where I can do the following - I have an app and I am showing some text on the screen and I want the text to be visible on the screen even if the user minimizes the app. Something like floating text which is always visible unless the app get's force stopped or it get's cleared from recently used apps tab.
not kotlin but kotlin colored 2
k
You will need an overlay and also request the user to give permission. It’s also possible to use compose, here’s an example from my project : https://github.com/Nailik/rhasspy_mobile/blob/develop/overlay/src/androidMain/kotlin/org/rhasspy/mobile/overlay/MicrophoneOverlay.kt
m
Thanks bro ☺️