react-native-lottie-splash-screen icon indicating copy to clipboard operation
react-native-lottie-splash-screen copied to clipboard

Is that possible add fade out animation between this splash screen and the next screen in IOS?

Open danielsousast opened this issue 3 years ago • 2 comments

danielsousast avatar Jun 08 '22 12:06 danielsousast

+1, this lib fading out works on Android (see <item name="android:windowExitAnimation">@android:anim/fade_out</item> in styles.xml) but not on iOS.

Fade Prop: https://github.com/zoontek/react-native-bootsplash#hide

Implementation of Fade on iOS: https://github.com/zoontek/react-native-bootsplash/blob/c070e86908a5a1b24d67874852cdd5ce5ddcc15d/ios/RNBootSplash.m#L98

^ could recommend similar feature as this library with 'fade' prop.

beeboopx avatar Jun 11 '22 22:06 beeboopx

Change this line to

                        [UIView animateWithDuration:0.2
                        animations:^{loadingView.alpha = 0.0;}
                        completion:^(BOOL finished){ [loadingView removeFromSuperview]; }];

kirillkollex avatar Dec 20 '22 12:12 kirillkollex