import React, { useState } from 'react'; import { View, Text, TouchableOpacity, ScrollView, } from 'react-native'; import { getStyles } from './checkoutAddressScreen.styles'; import { Header, StepProgress, PrimaryButton } from '@components'; import { useAppTheme } from '@theme'; const CHECKOUT_STEPS = [ { key: 'address', label: 'Address' }, { key: 'payment', label: 'Payment' }, { key: 'confirm', label: 'Confirm' }, ]; export const CheckoutAddressScreen: React.FC = () => { const { colors } = useAppTheme(); const styles = getStyles(colors); const [deliveryOption, setDeliveryOption] = useState<'standard' | 'express'>('standard'); return (
{}} /> Deliver to Koramangala 4th Block, Bengaluru, 560034 Home Delivery Option setDeliveryOption('standard')} activeOpacity={0.7} > Standard Delivery Free • 25-30 min {deliveryOption === 'standard' && } setDeliveryOption('express')} activeOpacity={0.7} > Express Delivery ₹40 • 10-15 min {deliveryOption === 'express' && } {}} /> ); };