From bafd0b8c5ddd6f769a834618de8b03688f0fd835 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Sat, 31 Aug 2024 12:38:49 +0200 Subject: Remove unused components --- components/Collapsible.tsx | 41 ----------------------------------------- components/ExternalLink.tsx | 24 ------------------------ 2 files changed, 65 deletions(-) delete mode 100644 components/Collapsible.tsx delete mode 100644 components/ExternalLink.tsx (limited to 'components') diff --git a/components/Collapsible.tsx b/components/Collapsible.tsx deleted file mode 100644 index c326473..0000000 --- a/components/Collapsible.tsx +++ /dev/null @@ -1,41 +0,0 @@ -import Ionicons from '@expo/vector-icons/Ionicons'; -import { PropsWithChildren, useState } from 'react'; -import { StyleSheet, TouchableOpacity, useColorScheme } from 'react-native'; - -import { ThemedText } from '@/components/ThemedText'; -import { ThemedView } from '@/components/ThemedView'; -import { Colors } from '@/constants/Colors'; - -export function Collapsible({ children, title }: PropsWithChildren & { title: string }) { - const [isOpen, setIsOpen] = useState(false); - const theme = useColorScheme() ?? 'light'; - - return ( - - setIsOpen((value) => !value)} - activeOpacity={0.8}> - - {title} - - {isOpen && {children}} - - ); -} - -const styles = StyleSheet.create({ - heading: { - flexDirection: 'row', - alignItems: 'center', - gap: 6, - }, - content: { - marginTop: 6, - marginLeft: 24, - }, -}); diff --git a/components/ExternalLink.tsx b/components/ExternalLink.tsx deleted file mode 100644 index 8f05675..0000000 --- a/components/ExternalLink.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import { Link } from 'expo-router'; -import { openBrowserAsync } from 'expo-web-browser'; -import { type ComponentProps } from 'react'; -import { Platform } from 'react-native'; - -type Props = Omit, 'href'> & { href: string }; - -export function ExternalLink({ href, ...rest }: Props) { - return ( - { - if (Platform.OS !== 'web') { - // Prevent the default behavior of linking to the default browser on native. - event.preventDefault(); - // Open the link in an in-app browser. - await openBrowserAsync(href); - } - }} - /> - ); -} -- cgit v1.2.3-18-g5258