Current Behavior
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)
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
| software |
version |
| @react-navigation/web |
1.0.0-alpha.7 |
| react-native-web |
0.5.4 |
| node |
9.11.2 |
| yarn |
1.7.0 |
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