The Native HTML Viewer widget allows HTML rich text content to be shown in native apps.
This widget uses react-native-render-html to do the actual HTML rendering.
Use a WebView when a full web engine is required to show the content
Place the widget in a dataview on a native page and link the rich text attribute.
The power of the react-native-render-html used in this widget really lies in the ability to style the content. Quite often, rich text is entered in a browser, in light mode. Many text editors insert color styles to make sure the text is visible. However, that would render the text invisible on a device with a dark theme.
By default, the widget will pass a text color so the text is visible in both light and dark mode.
That would not work if the content has color styles on the elements.
The library can overrule this and the widget exposes the commonly used properties.
The library can ignore styles set on the HTML content elements, like style="color: black"
.
To enable this, set color
as value for the Ignored styles property
. Multiple values can be specified, separate them with a comma: color,backgroundColor
.
Note that the React Native naming convention must be followed. CSS background-color
must be passed as backgroundColor
.
Inline styles in the HTML content can be disabled entirely by setting this property to false.
The library can style HTML tags. The widget uses this to specify a color on the body tag, to make all text appear in this color.
You can do the same by creating a custom class in your native theme. The class in the example below sets the color of the headers to green.
export const greenHeaders = {
h1: {
color: "green"
},
h2: {
color: "green"
},
h3: {
color: "green"
},
h4: {
color: "green"
},
h5: {
color: "green"
}
};
This page explains in detail how this works: https://meliorence.github.io/react-native-render-html/docs/guides/styling The widget sets the tagsStyles property on the library to pass the styles.
As there is no full browser or CSS engine, CSS selectors are not available.