Android StackNavigator slide from right transition Issue

poburi FE·2020년 11월 19일
0

React Native

목록 보기
2/4

react-navigation의 Andorid에서 StackNavigator에서 사용할 수 있는 애니메이션 전환은 bottom->top으로 페이드인 트랜지션 애니메이션이 기본으로 설정되어 있다.
(IOS는 left->right로 되어있음...)

IOS 슬라이드 트랜지션 애니메이션과 같도록 구현하려면 아래를 참고하자.

⚠️ Starting from : "@react-navigation/native": "^5.5.1" 이상

Stack.Navigator 옵션으로 추가된 CardStyleInterpolators를 이용하여 제스쳐를 변경할 수 있다.

<RootStack.Screen
	...
    screenOptions={{
    	cardStyleInterpolator: CardStyleInterpolators.forHorizontalIOS
    }}
/>

해결을 위해 참조한 사이트1
해결을 위해 참조한 사이트2

profile
FE 개발자 poburi

0개의 댓글