react-native-htmlview
react-native-htmlview copied to clipboard
NumberOfLines
How to prevent a html by using numberOfLines? using number of lines didn't work
Did you find any solution for this ? @ydhnwb
inside my renderNode function, i add these followed:
if (node.name === 'p') {
return (
<Text numberOfLines={2}>{defaultRenderer(node.children, parent)}</Text>
)
}