Hardik Viran..
6
一个iOS / Android纯javascript react-native组件,可将您的HTML呈现为100%本机视图。它具有极高的可定制性和易用性,旨在能够渲染您扔给它的任何东西。
使用上述库可提高您的应用性能水平,并且易于使用。
安装
npm install react-native-render-html --save or yarn add react-native-render-html
基本用法
import React, { Component } from 'react';
import { ScrollView, Dimensions } from 'react-native';
import HTML from 'react-native-render-html';
const htmlContent = `
This HTML snippet is now rendered with native components !
Enjoy a webview-free and blazing fast application
Look at how happy this native cat is
`;
export default class Demo extends Component {
render () {
return (
);
}
}
您可以使用以下链接参考来使用不同类型的道具(请参见上面的链接)进行设计和自定义。