import BottomSheet, { BottomSheetView } from "@gorhom/bottom-sheet"; import { router } from "expo-router"; import { useRef, type PropsWithChildren } from "react"; import { Image, Text, TouchableOpacity, View } from "react-native"; import { GestureHandlerRootView } from "react-native-gesture-handler"; import { icons } from "@/constants"; import { tr } from "@/lib/i18n"; import { useTheme } from "@/lib/theme"; import { Map } from "./map"; type RideLayoutProps = { title?: string; snapPoints?: string[]; }; export const RideLayout = ({ title, snapPoints, children, }: PropsWithChildren) => { const bottomSheetRef = useRef(null); const { isDark } = useTheme(); return ( router.back()}> {tr("components.rideLayout.backArrowAlt")} {title ?? tr("components.rideLayout.goBack")} {children} ); };