react-native-hyperlink
react-native-hyperlink copied to clipboard
Padding breaks link
Using this in a <Text> with large padding breaks the link for some reason.
Sample:
<Hyperlink linkDefault={ true }>
<Text style={{padding: 20}}>Testing https://www.google.com</Text>
</Hyperlink>
This was breaking links for me. Switching to margin fixed my use case but thought I'd put this here in case anyone else has a similar issue and can't find out why links aren't working.