You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding a style prop to a Link does not change the style of the Link
import { Link } from '@react-navigation/web'
<Link routeName="Landing" style={{ textDecoration: 'none' }}>
<PrimaryButton title={'◀︎ Back to Home'} style={styles.button} />
</Link>
Expected Behavior
The child components should not be underlined (or textDecorated)
Current Behavior
Adding a
styleprop to a Link does not change the style of the LinkExpected Behavior
The child components should not be underlined (or textDecorated)
How to reproduce
I believe the same issue is reproduced here?
https://github.com/react-navigation/web-server-example/blob/master/src/AppView.js
Your Environment