react-native-htmlview
react-native-htmlview copied to clipboard
can't set text propriety stylesheet
can't change text color,size,alignments in htmlview. can't set any property related text?
can't change text color,size,alignments in htmlview. can't set any property related text? you can try like this ? <View style={{marginTop:15,marginBottom:18}}> <HTMLView stylesheet={style} value={introduce} /> </View> const style = StyleSheet.create({ b: { color:'#777893', fontSize: 14, paddingLeft:18, paddingRight:18, }, p: { color: '#777893', fontSize: 14, paddingLeft:18, paddingRight:18, }, });
this is ok. but if texts nested togethor ? like
<h3>Tile Is<b>Bold and <i>Italic </i></b>
cascade style needed .
The ability to link a CSS file here, which sits in the html head might make the customization much more flexible 🤔