Project/React Native

[React Native] Linking - 리액트 네이티브 외부 링크로 이동하는 방법

axnuo 2024. 11. 14. 22:44
import { TouchableOpacity, Linking, ActivityIndicator } from 'react-native';

const handleCardPress = (url: string) => {
    Linking.openURL(url).catch(err =>
      console.error("URL을 여는 중 오류가 발생했습니다:", err)
    );
  };

<TouchableOpacity key={idx} onPress={() => handleCardPress(imageUrl)}>

요런식으로 사용했는데...

 

공식문서는

https://reactnative.dev/docs/linking

 

Linking · React Native

Linking gives you a general interface to interact with both incoming and outgoing app links.

reactnative.dev

요거

 

... 구체적인 건 언젠가는..