How do I make a single word in a Text field bold or italics? Kind of like this:
This is a sentence with one word in bold
Use this react native library
To install
npm install react-native-htmlview --save
Basic Usage
import React from 'react';
import HTMLView from 'react-native-htmlview';
class App extends React.Component {
render() {
const htmlContent = 'This is a sentence with one word in bold';
return (
);
}
}
Supports almost all html tags.
For more advanced usage like
View this ReadMe