import { Text } from '@/aesthetics/Text'; import { font, spacing, useColors } from '@/aesthetics/styles'; import { useStrings } from '@/common/hooks/useStrings'; import { useRouter } from 'expo-router'; import { ArrowLeft } from 'lucide-react-native'; import { Pressable, StyleSheet, View } from 'react-native'; import { SafeAreaView } from 'react-native-safe-area-context'; export default function BoardRoomScreen() { const router = useRouter(); const c = useColors(); const strings = useStrings(); return ( [styles.backButton, pressed && styles.pressed]} onPress={() => router.back()} > {strings.profile.board.title} {strings.profile.board.closed} ); } const styles = StyleSheet.create({ container: { flex: 1, }, header: { flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between', paddingHorizontal: spacing.lg, paddingVertical: spacing.md, borderBottomWidth: 1, }, backButton: { width: 40, height: 40, alignItems: 'center', justifyContent: 'center', }, headerTitle: { fontSize: font.lg, fontWeight: '600', }, content: { flex: 1, alignItems: 'center', justifyContent: 'center', paddingHorizontal: spacing.xl, }, closedTitle: { fontSize: font.xl, fontWeight: '600', textAlign: 'center', }, pressed: { opacity: 0.7, }, });