[ReactNative] 이벤트 버블링 막기

hyeonze·2022년 7월 22일
1
<View
  onTouchEnd={e => {
    e.stopPropagation();
    handlePress();
    }}
  style={styles.Button}
/>
profile
Advanced thinking should be put into advanced code.

0개의 댓글