Modal flickering

dudgus5766·2022년 12월 1일
0

React-Native

목록 보기
6/9

안드로이드에서 Modal을 닫을 때 순간적으로 깜빡이는 이슈가 있었습니다.

// Modal

<ModalContainer
      isVisible={isVisible}
      animationType="none"
      onBackdropPress={onBackdropPress}
      onBackButtonPress={onBackButtonPress}
      onModalHide={handleCloseModal}
      onSwipeComplete={handleCloseModal}
      useNativeDriver={Platform.OS === 'ios'}
      onPressOk={onPressOk}
      hideModalContentWhileAnimating
      statusBarTranslucent
      swipeDirection="down"
      *backdropTransitionOutTiming={0} // <- 이 부분을 넣어줌*
  >
...
</ModalContainer>

Modal 에 backdropTransitionOutTiming={0} 코드를 넣어주니 애니메이션에 영향을 주지 않고 깜빡임을 수정하여 정상 작동되었습니다.


참고(깃헙 이슈) 📚


Modal flickering on closing. · Issue #268 · react-native-modal/react-native-modal

profile
RN App Developer

0개의 댓글