⚛️React Native
The YungPoints Offerwall is hosted on the web giving your application a native look-and-feel.
Linking
import { Linking } from 'react-native';
Linking.openURL('https://jdcurrent.com/offers/31/YourTrackingID');WebView
/*
Add react-native-webview to your dependencies. Using Yarn:
yarn add react-native-webview
Using npm:
npm install --save react-native-webview
Using Expo:
npx expo install react-native-webview
*/
import { WebView } from 'react-native-webview';
return <WebView source={{ uri: 'https://jdcurrent.com/offers/31/YourTrackingID' }} />;Last updated