()
| 55 | }; |
| 56 | |
| 57 | const 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 | |
| 95 | const ThemedGetStarted = () => { |
| 96 | const isDarkTheme = useColorMode().colorMode === 'dark'; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…