()
| 33 | const noop = () => {}; |
| 34 | |
| 35 | const GetStartedButton = () => { |
| 36 | return ( |
| 37 | <View style={styles.container}> |
| 38 | <Link to="/docs/guides/getting-started" style={noTextDecoration}> |
| 39 | <Button mode="contained" style={styles.button} onPress={noop}> |
| 40 | Get started |
| 41 | </Button> |
| 42 | </Link> |
| 43 | <Button |
| 44 | mode="outlined" |
| 45 | onPress={() => |
| 46 | window.open( |
| 47 | 'https://snack.expo.dev/@react-native-paper/react-native-paper-example_v5' |
| 48 | ) |
| 49 | } |
| 50 | > |
| 51 | Try on Snack |
| 52 | </Button> |
| 53 | </View> |
| 54 | ); |
| 55 | }; |
| 56 | |
| 57 | const Shimmer = () => { |
| 58 | /* Docusaurus won't call StyleSheet.create() server-side */ |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…