[RN]클립보드 복사 기능

임효진·2023년 3월 7일
0

리액트 네이티브에서 주소 복사 기능 구현하는 방법


위 처럼 임포트를 하고


온 프레스 함수를 짜고


하면 끝 !

가져다 쓰는 분이 계실 수도 있으니 코드는 아래

import Clipboard from '@react-native-clipboard/clipboard';

 const onCopyAddress = async (text: string) => {
    try {
      await Clipboard.setString(text);
      alert('클립보드에 주소가 복사되었습니다.');
    } catch (e) {
      alert('복사에 실패하였습니다');
    }
  }
 
 <TouchableOpacity onPress={() => { onCopyAddress(data.item?.address) }}>
                      <MkText style={tw('text-12  text-gray-500 underline')}>
                        주소복사
                      </MkText>
                    </TouchableOpacity>
profile
핫바리임

0개의 댓글