WebView

Other topics

Simple component using webview

import React, { Component } from 'react';
import { WebView } from 'react-native';

class MyWeb extends Component {
  render() {
    return (
      <WebView
        source={{uri: 'https://github.com/facebook/react-native'}}
        style={{marginTop: 20}}
       />
    );
  }
}

Contributors

Topic Id: 8763

Example Ids: 27322

This site is not affiliated with any of the contributors.