Is there some technical documentation about how th...
# compose
t
Is there some technical documentation about how the default keys works for
rememberSaveable
and how to debug them? I'm trying to debug an issue with Voyager where default keys does not work, but custom keys do. (Unfortunately there's tons of Compose rememberXXX that don't allow passing custom keys)
g
I’m not sure this is what you mean, but you might find some information about this in the docs for Saver and SaveableStateRegistry
t
Thanks, but no I mean details about the
Copy code
currentCompositeKeyHash.toString(MaxSupportedRadix)
That is the default key used to do the actual saving / restoring by default. Seems it's not the same on restore leading to the issue. So wondering how it's actually computed and what impact it to try to debug the issue.