The hackable, full-featured Open Source HTML rendering solution for React Native.
npm install @fobos531/react-native-render-html``bash`
npm install @fobos531/react-native-render-html
`bash`
yarn add @fobos531/react-native-render-html
`jsx
import React from 'react';
import { useWindowDimensions } from 'react-native';
import RenderHtml from '@fobos531/react-native-render-html';
const source = {
html:
Hello World!
};export default function App() {
const { width } = useWindowDimensions();
return (
contentWidth={width}
source={source}
/>
);
}
``