리액트 네이티브 - Expo 여러 앱기능 - 앱에서 외부링크 열기

하이루·2021년 10월 22일
0

앱에서 외부링크를 열기 위한 준비

expo에서 제공하는 도구 설치

expo install expo-linking

설치한 도구에서 불러오기

import * as Linking from 'expo-linking';

--> expo-linking안의 도구를 모두 가져온는데 그 이름을 Linking이라고 명명짓겠다는 의미

도구를 이용하여 함수 만들기

const link = () => {
        Linking.openURL("https://spartacodingclub.kr")
    }
    
    
    

Linking.openURL("https://spartacodingclub.kr")

만든 함수를 활용

  <View style={styles.buttonGroup}>

    <TouchableOpacity style={styles.button} onPress={()=>link()}><Text style={styles.buttonText}>외부 링크</Text></TouchableOpacity>
   </View>
profile
ㅎㅎ

0개의 댓글