Regarding the compose-esque `rememberLauncherForAc...
# compose
c
Regarding the compose-esque
rememberLauncherForActivityResult
api. my only question is that I dont understand the naming. I feel like in my past years of view-land android apps, we never talked about "launchers" so whats this thing about a rememberLauncher?
f
startActivityForResult
is deprecated and the new way to do it is using contracts, as per the doc above
i
The API returns an
ActivityResultLauncher
- i.e., what you call
launch
on to get an Activity Result
c
Thanks everyone. maybe i was just overthinking it. 🙃
i
Since moving to Kotlin, it is a lot easier to ignore what types are actually being thrown around, but they're still there 🙂