Commit 8136279a authored by Pramodh Rajapakse's avatar Pramodh Rajapakse

base auction template added

parent 0900dbb7
// Example of Splash, Login and Sign Up in React Native
// https://aboutreact.com/react-native-login-and-signup/
// Import React and Component
import React from 'react';
import {StyleSheet, View, Text, SafeAreaView, TouchableOpacity, TextInput, ImageBackground} from 'react-native';
import { Formik } from 'formik';
import { FontAwesome } from '@expo/vector-icons';
import { MaterialCommunityIcons } from '@expo/vector-icons';
const HomeAuctionScreen = ({navigation}) => {
return (
<SafeAreaView style={{flex: 1, color: 'yellow'}}>
</SafeAreaView>
);
};
export default HomeAuctionScreen;
const styles = StyleSheet.create({
container: {
flex: 1,
color: '#333',
padding: 10,
marginTop: 20,
marginBottom: 10,
width: "100%",
},
activityIndicator: {
alignItems: 'center',
height: 80,
},
Button:{
alignItems: "center",
backgroundColor: "#DDDDDD",
padding: 10
},
input: {
borderWidth: 1,
borderColor: '#ddd',
padding: 10,
paddingTop: 10,
fontSize: 18,
borderRadius: 6,
marginTop: 20,
marginBottom: 10,
marginLeft: 10,
marginRight: 10
},
heading: {
textAlign: 'center',
color: '#333',
fontWeight: 'bold',
padding: 10,
fontSize: 18,
},
buttonSub: {
width: "90%",
padding: 10,
marginTop: 20,
marginLeft: 20,
marginHorizontal: 10,
backgroundColor: "#ff8000",
flexDirection: "row",
marginBottom: 10,
justifyContent: "center",
borderRadius:10
},
textdata:{
fontSize: 18,
textAlign: 'center',
color: 'black',
marginTop: 20,
marginBottom: 5,
},
iconView:{
alignSelf: 'center',
},
images:{
height: '100%',
justifyContent: 'center'
}
});
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment