2026-07-02 14:34:19 +05:30

19 lines
505 B
TypeScript

import React from 'react';
import { View, Text, StyleSheet } from 'react-native';
import { useAppTheme } from '@theme';
const ConfirmPickupScreen: React.FC = () => {
const { colors } = useAppTheme();
return (
<View style={[styles.container, { backgroundColor: colors.background }]}>
<Text>Confirm Pickup Screen</Text>
</View>
);
};
const styles = StyleSheet.create({
container: { flex: 1, justifyContent: "center", alignItems: "center" },
});
export default ConfirmPickupScreen;