react-native-htmlview
react-native-htmlview copied to clipboard
Show icon instead of bullets
Is there anyway to show icon or image instead of bullets in lists?
Any updates on this?
You can use bullet
props to render Icon or image. I have rendered circle icon as below :
<HTMLView
value={this.state.dataSource}
paragraphBreak={'\n'}
lineBreak={''}
stylesheet={styles}
bullet={(<Icon name="circle" size={12} color="#444444" />)}
renderNode={this.renderNode}
/>