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

Function Shimmer

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

Source from the content-addressed store, hash-verified

55};
56
57const Shimmer = () => {
58 /* Docusaurus won't call StyleSheet.create() server-side */
59 /* eslint-disable react-native/no-inline-styles, react-native/no-color-literals */
60
61 return (
62 <View
63 style={{
64 display: 'flex',
65 flexDirection: 'row',
66 justifyContent: 'center',
67 paddingBottom: 18,
68 }}
69 >
70 <View
71 style={{
72 width: 121,
73 marginRight: 16,
74 borderWidth: 1,
75 borderColor: 'rgba(125, 82, 96, 0.4)',
76 borderStyle: 'solid',
77 borderRadius: 40,
78 height: 40,
79 }}
80 />
81 <View
82 style={{
83 width: 132,
84 borderWidth: 1,
85 borderColor: 'rgba(125, 82, 96, 0.4)',
86 borderStyle: 'solid',
87 borderRadius: 40,
88 height: 40,
89 }}
90 />
91 </View>
92 );
93};
94
95const ThemedGetStarted = () => {
96 const isDarkTheme = useColorMode().colorMode === 'dark';

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…