diff options
author | Biswakalyan Bhuyan <biswa@surgot.in> | 2024-10-17 23:46:25 +0530 |
---|---|---|
committer | Biswakalyan Bhuyan <biswa@surgot.in> | 2024-10-17 23:46:25 +0530 |
commit | 6ad67657edbc31df6046ec2e4f4ffa28114560f5 (patch) | |
tree | a60cc8a5396fe74808965e80b7b19f8659fa2e55 /src/screens | |
parent | 6a76594f71ffba95a3480e57f4a4243e212e09ba (diff) | |
download | mall-app-6ad67657edbc31df6046ec2e4f4ffa28114560f5.tar.gz mall-app-6ad67657edbc31df6046ec2e4f4ffa28114560f5.tar.bz2 mall-app-6ad67657edbc31df6046ec2e4f4ffa28114560f5.zip |
added some styling to the MallSelection Page
Diffstat (limited to 'src/screens')
-rw-r--r-- | src/screens/MallSelectionScreen.js | 44 |
1 files changed, 39 insertions, 5 deletions
diff --git a/src/screens/MallSelectionScreen.js b/src/screens/MallSelectionScreen.js index 620abe7..964711b 100644 --- a/src/screens/MallSelectionScreen.js +++ b/src/screens/MallSelectionScreen.js @@ -1,16 +1,50 @@ import React from 'react'; -import { View, Button, Text } from 'react-native'; +import { View, Button, Text, StyleSheet, TouchableOpacity } from 'react-native'; const MallSelectionScreen = ({ navigation }) => { const handleMallSelect = () => navigation.navigate('ProductScanner'); return ( - <View> - <Text>Select Mall:</Text> - <Button title="Mall 1" onPress={handleMallSelect} /> - <Button title="Mall 2" onPress={handleMallSelect} /> + <View style={styles.container}> + <Text style={styles.title}>Select a Mall</Text> + <TouchableOpacity style={styles.button} onPress={handleMallSelect}> + <Text style={styles.buttonText}>Mall 1</Text> + </TouchableOpacity> + <TouchableOpacity style={styles.button} onPress={handleMallSelect}> + <Text style={styles.buttonText}>Mall 2</Text> + </TouchableOpacity> </View> ); }; +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; |