react-native-htmlviewer

HTML to native component.


Keywords
react-native, react-component, react-native-component, react, react native, mobile, ios, android, html, converter, html to component, htmlview, render html, html react native, react native html, react-native-htmlview, react-native html viewer
License
MIT
Install
npm install react-native-htmlviewer@1.0.6

Documentation

react-native-htmlviewer

Converta string HTML em componentes nativos para React Native.

Uso básico

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

export default class MyScreen extends Component {
    render() {
	    return (
		    <HTMLViewer 
			    html={"<p>Olá, mundo!</p>"}
		    />
	    );
    }
}

Personalização simples

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

export default class MyScreen extends Component {
    render() {
	    return (
		    <HTMLViewer 
			    html={"<p>Olá, mundo!</p>"}
			    customProps={{
				    img: {
					    maxWidth: Dimensions.get('window').width - 40
				    }
			    }}
		    />
	    );
    }
}