fix: indicators popping in due to z height change of hero animation (fade in instead after animation)

This commit is contained in:
goalie2002
2025-12-08 21:31:47 -08:00
parent 0dace87ba6
commit 392a5cc2ed
3 changed files with 110 additions and 30 deletions
@@ -25,6 +25,14 @@ class CurrentAssetNotifier extends AutoDisposeNotifier<BaseAsset?> {
_keepAliveLink = ref.keepAlive();
}
void clearAsset() {
_keepAliveLink?.close();
_assetSubscription?.cancel();
_keepAliveLink = null;
_assetSubscription = null;
state = null;
}
void dispose() {
_keepAliveLink?.close();
_assetSubscription?.cancel();