react-native-htmlview icon indicating copy to clipboard operation
react-native-htmlview copied to clipboard

NumberOfLines

Open ydhnwb opened this issue 4 years ago • 2 comments

How to prevent a html by using numberOfLines? using number of lines didn't work

ydhnwb avatar Nov 10 '20 21:11 ydhnwb

Did you find any solution for this ? @ydhnwb

Exikonnect avatar Aug 03 '21 06:08 Exikonnect

inside my renderNode function, i add these followed:

if (node.name === 'p') {
    return (
        <Text numberOfLines={2}>{defaultRenderer(node.children, parent)}</Text>
    )
}

PekoNico avatar May 07 '22 07:05 PekoNico