import React from 'react'; import { View, Button, Text, StyleSheet, TouchableOpacity } from 'react-native'; const MallSelectionScreen = ({ navigation }) => { const handleMallSelect = () => navigation.navigate('ProductScanner'); return ( Select a Mall Mall 1 Mall 2 ); }; const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: '#f2f2f2', padding: 16, }, title: { fontSize: 24, fontWeight: 'bold', color: '#333', marginBottom: 20, }, button: { backgroundColor: '#4CAF50', paddingVertical: 12, paddingHorizontal: 30, borderRadius: 8, marginVertical: 10, elevation: 3, }, buttonText: { fontSize: 18, color: '#ffffff', fontWeight: 'bold', textAlign: 'center', }, }); export default MallSelectionScreen;