import React from 'react'; import { View, Text } from 'react-native'; import { useAppTheme } from '@theme'; import { PrimaryButton } from '@components'; import { LocationPinIcon } from '@icons'; import { useNavigation } from '@react-navigation/native'; import { NativeStackNavigationProp } from '@react-navigation/native-stack'; import { AuthStackParamList } from '@navigation/navigationTypes'; import { RouteNames } from '@utils/constants'; import { getStyles } from './setLocationScreen.styles'; const SetLocationScreen: React.FC = () => { const { colors } = useAppTheme(); const styles = getStyles(colors); const navigation = useNavigation>(); return ( {/* Blank Map Placeholder Area */} {/* Pulsing marker simulation */} Select Location Drag the map to pinpoint your location {/* Bottom Sheet Location Selector Card */} Choose Delivery Area Current Address MG Road, Ashok Nagar, Bengaluru, Karnataka 560001 navigation.navigate(RouteNames.CompleteProfile)} style={styles.confirmButton} /> ); }; export default SetLocationScreen;