import React from 'react'; import { View, Text } from 'react-native'; import { getStyles } from './liveTrackingScreen.styles'; import { Header, PrimaryButton } from '@components'; import { useAppTheme } from '@theme'; export const LiveTrackingScreen: React.FC = () => { const { colors } = useAppTheme(); const styles = getStyles(colors); return (
{}} /> 🗺️ Live Map Delivery partner location tracking ● Live Rahul Sharma ⭐ 4.8 KA-01-AB-1234 • Honda Activa {}} style={{ flex: 1, marginRight: 8 }} /> {}} style={{ flex: 1, marginLeft: 8 }} /> ); };