Help > Forum > 将軍 > React Native アプリへのフォーラムの埋め込み

React Native アプリへのフォーラムの埋め込み

WebViewを使用して、React Nativeアプリにフォーラムを埋め込むことができます。

使用できるサンプルコードは次のとおりです。

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({});

https://FORUM_ADDRESS をフォーラムのアドレスに置き換えてください。


If you still need help, please contact us.