Closed hoc081098 closed 7 months ago
is it optimizing around rememberUpdatedState
? What is the target of this PR?
is it optimizing around
rememberUpdatedState
? What is the target of this PR?
rememberUpdatedState
to make sure scope.get...
will use the latest ParametersDefinition
(but it does not cause unnecessary recomposition 🙏).Previous code has an issue where
scope.get(...)
use the oldParametersDefinition
, since it isremember
ed.
KoinContext
, KoinApplication
, ... Basically, I have replaced CompositionLocalProvider (...){ content() }
with CompositionLocalProvider(..., content = content)
Good work. I need to take time to take a tour :)
It's just a api diff confilct I believe @hoc081098 👍
It's just a api diff confilct I believe @hoc081098 👍
I will update it 🙏
done edit for you @hoc081098 👍
done edit for you @hoc081098 👍
Thanks for your help