Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

skip initial entering animation for login

+4 -1
+4 -1
src/screens/Login/index.tsx
··· 17 17 import {PasswordUpdatedForm} from '#/screens/Login/PasswordUpdatedForm' 18 18 import {LoginForm} from '#/screens/Login/LoginForm' 19 19 import {ScreenTransition} from './ScreenTransition' 20 + import {LayoutAnimationConfig} from 'react-native-reanimated' 20 21 21 22 enum Forms { 22 23 Login, ··· 164 165 return ( 165 166 <KeyboardAvoidingView testID="signIn" behavior="padding" style={a.flex_1}> 166 167 <LoggedOutLayout leadin="" title={title} description={description}> 167 - <ScreenTransition key={currentForm}>{content}</ScreenTransition> 168 + <LayoutAnimationConfig skipEntering skipExiting> 169 + <ScreenTransition key={currentForm}>{content}</ScreenTransition> 170 + </LayoutAnimationConfig> 168 171 </LoggedOutLayout> 169 172 </KeyboardAvoidingView> 170 173 )