반응형
반응형
React-Native에서는 전화 기능을 구현하려면 Linking이라는 라이브러리를 사용해야 한다.
최상단에 Linking 라이브러리를 먼저 import해준다.
import { Linking } from 'react-native';
1. 전화걸기 기능
Linking.openURL(`tel:${전화번호 변수 or 지정할 전화번호}`)
2. 문자보내기 기능
Linking.openURL(`sms:${전화번호 변수 or 지정할 전화번호}`)
3 .메일보내기 기능
Linking.openURL(`mailto:${메일주소 변수 or 지정할 메일주소}`)
위와 같이 사용하면 iOS와 Android모두 정상작동한다.
반응형
'React Native' 카테고리의 다른 글
[RN] react-native 키보드 가림현상 - iOS (0) | 2024.05.29 |
---|---|
[RN] react-native useRef 사용방법 (0) | 2024.05.27 |
[RN] react-native ScrollView (0) | 2024.05.27 |
[RN] react-native, No bundle URL present. error (iOS) (0) | 2024.05.21 |
[RN] react-native Xcode Flipper error (0) | 2024.05.16 |