Help

Incorporare una community in un'app React Native

Puoi incorporare una community nella tua app React Native utilizzando una WebView.

Ecco un esempio di codice che puoi usare:

import React from 'react';
import { StyleSheet, View } from 'react-native';
import { WebView } from 'react-native-webview';

const HomeScreen = () => {
  return (
      <View style={{ flex: 1, width: '100%'}}>
      <WebView
        overScrollMode='content'
          source={{ uri: 'https://FORUM_ADDRESS' }}
        />
      </View>
  );
}
export default HomeScreen;

const styles = StyleSheet.create({});

Sostituisci https://FORUM_ADDRESS con l'indirizzo della tua community.



or learn more