본문 바로가기
리액트네이티브

[react-native] 전화걸기 / 문자보내기 / 메일보내기

by 알찬 퍼블리셔 2020. 4. 22.
728x90
반응형
import {Linking} from 'react-native'

 

 

- 전화걸기 

<Button onPress={{Linking.openURL(`tel:01012341234`)}} />

 

 

- 문자보내기

<Button onPress={{Linking.openURL(`sms:01012341234`)}} />

 

 

- 메일보내기

<Button onPress={{Linking.openURL(`mailto:test@mail.com`)}} />

 

 

728x90
반응형

댓글