The Wayback Machine - https://web.archive.org/web/20201023100653/https://github.com/danrigsby/react-native-web-container
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 

README.md

react-native-web-container

A wrapper around the React Native WebView to add autoHeight and the ability to sanitize html using sanitize-html

Installation

npm install --save react-native-web-container

Usage

Example

import WebContainer from 'react-native-web-container';

class MyWebView extends React.Component {
  render() {
    let html = '';

    return (
      <WebContainer
        style={{flex: 1}}
        html={html}
        makeSafe={true}
        autoHeight={true} />
    );
  }
}

Properties

option values
autoHeight (default: false) automatically set the height of the WebView to fill the contains and remove the scroll bar
makeSafe (default: false) false: will not modify the html, true: will sanitize the html using the build in defaults, object: define a custom configuration for how to sanitize the html (See docs)

About

No description, website, or topics provided.

Resources

Releases

No releases published

Packages

No packages published
You can’t perform that action at this time.