Hi, Does anyone now what are the risks using “@Opt...
# compose
g
Hi, Does anyone now what are the risks using “@OptIn(ExperimentalComposeUiApi::class)” ? Can it cause a run time exceptions when it will change in the future?
d
The only risk is that, on subsequent Compose UI version, you'll have to migrate your code to handle the possible future API changes. If you never bump your Compose UI version, your code will continue to work as it is now.
g
Thanks a lot !
d
You're welcome!