MCPcopy Create free account
hub / github.com/callstack/react-native-paper / GetStartedButton

Function GetStartedButton

docs/src/components/GetStartedButtons.tsx:35–55  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

33const noop = () => {};
34
35const 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
57const Shimmer = () => {
58 /* Docusaurus won't call StyleSheet.create() server-side */

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…