리액트네이티브
[react-native] 전화걸기 / 문자보내기 / 메일보내기
알찬 퍼블리셔
2020. 4. 22. 15:08
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
반응형