What is the reason paused
state stands for?
#1499
-
While checking the version changelog, I found that the following changes are included in version 0.21.0:
As far as I understand, a circuit's presenter and UI are always disposed of when they are not the top record on the back stack. The only situation I can imagine where a presenter/UI is added to the compose node and is 'inactive' is during screen transitions. I am curious if I understand this correctly. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It essentially just means we cache the last emitted state and don't resume until it's the top of the stack. Previously, we had performance issues during nav decorations because both records were active at the same time during the animation. With the new approach, we just show the previously cached value rather than restart. |
Beta Was this translation helpful? Give feedback.
It essentially just means we cache the last emitted state and don't resume until it's the top of the stack. Previously, we had performance issues during nav decorations because both records were active at the same time during the animation. With the new approach, we just show the previously cached value rather than restart.