react-native-htmlview
react-native-htmlview copied to clipboard
Make text selectable by words
Hello, would be really great if you could select text by words like in this screenshot:

selectable={true} doesn't select by words unfortunately, only the whole text. I also tried using
<TextInput
value={children}
editable={false}
multiline
{...restProps}
/>
as a TextComponent prop, but no luck there either - I think TextInput is not rendered correctly inside a <Text> element which is the way HTMLView requires the rendering to be.
So would be really good to have that feature built in.
Cheers
Hello! Any updates on this?