* docs(react-native): create the basic expo project * docs(react-native): cross-platform Apple social sign-in * docs(react-native): cross-platform Google social sign-in * docs(react-native): fix typos * docs(react-native): remove wrong entry in the `Connection` component * Correct typos * Prettier * Draft * Draft * docs(react-native): use kebab-case file naming convention in Expo guide - use kebab-case file naming convention in Expo guide - add trailing semicolon to align with the standard Expo template conventions * docs(react-native): use kebab-case file naming convention in Expo social auth example * docs(react-native): update the packages of the Expo social auth example * Fix * Draft * Changes * Correct log message --------- Co-authored-by: Chris Chinchilla <chris.ward@supabase.io> Co-authored-by: Chris Chinchilla <chris@chrischinchilla.com>
46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
import { PropsWithChildren, useState } from 'react';
|
|
import { StyleSheet, TouchableOpacity } from 'react-native';
|
|
|
|
import { ThemedText } from '@/components/themed-text';
|
|
import { ThemedView } from '@/components/themed-view';
|
|
import { IconSymbol } from '@/components/ui/icon-symbol';
|
|
import { Colors } from '@/constants/colors';
|
|
import { useColorScheme } from '@/hooks/use-color-scheme';
|
|
|
|
export function Collapsible({ children, title }: PropsWithChildren & { title: string }) {
|
|
const [isOpen, setIsOpen] = useState(false);
|
|
const theme = useColorScheme() ?? 'light';
|
|
|
|
return (
|
|
<ThemedView>
|
|
<TouchableOpacity
|
|
style={styles.heading}
|
|
onPress={() => setIsOpen((value) => !value)}
|
|
activeOpacity={0.8}>
|
|
<IconSymbol
|
|
name="chevron.right"
|
|
size={18}
|
|
weight="medium"
|
|
color={theme === 'light' ? Colors.light.icon : Colors.dark.icon}
|
|
style={{ transform: [{ rotate: isOpen ? '90deg' : '0deg' }] }}
|
|
/>
|
|
|
|
<ThemedText type="defaultSemiBold">{title}</ThemedText>
|
|
</TouchableOpacity>
|
|
{isOpen && <ThemedView style={styles.content}>{children}</ThemedView>}
|
|
</ThemedView>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
heading: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
gap: 6,
|
|
},
|
|
content: {
|
|
marginTop: 6,
|
|
marginLeft: 24,
|
|
},
|
|
});
|