react-native-gleam 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ios/GleamView.mm +5 -0
- package/package.json +1 -1
package/ios/GleamView.mm
CHANGED
|
@@ -182,6 +182,11 @@ static void _unregisterView(GleamView *view) {
|
|
|
182
182
|
[self.layer addSublayer:_shimmerLayer];
|
|
183
183
|
}
|
|
184
184
|
[self _registerClock];
|
|
185
|
+
} else if (!_isTransitioning) {
|
|
186
|
+
[self _setChildrenAlphaIfNeeded:1.0];
|
|
187
|
+
_shimmerLayer.opacity = 0.0;
|
|
188
|
+
[_shimmerLayer removeFromSuperlayer];
|
|
189
|
+
[self _unregisterClock];
|
|
185
190
|
}
|
|
186
191
|
}
|
|
187
192
|
|