[React Native] Button

설정·2021년 12월 26일
0

ReactNative

목록 보기
10/30

1. TouchableOpacity

▶ Refer to https://reactnative.dev/docs/touchableopacity

  • View와 비슷한 종류로 누르는 이벤트를 listen 할 준비가 되어있는 View
  • Opacity(투명도)가 들어있는 이유는 애니메이션 효과가 있기 때문.

2. TouchableHighlight

▶ Refer to https://reactnative.dev/docs/touchablehighlight

  • 요소를 클릭했을 때 배경색이 바뀜.
  • onPress()

3. TouchableNativeFeedback

▶ Refer to https://reactnative.dev/docs/touchablewithoutfeedback

  • Touchable 컴포넌트로 화면의 가장 위에서 일어나는 탭 이벤트를 listen
  • 그래픽이나 다른 UI 반응을 보여주지 않음(어플리케이션 변화되는게 없음)

4. Pressable [ New ! ]

▶ Refer to https://reactnative.dev/docs/pressable

0개의 댓글