Signup.js
Tue May 04 2021 11:47:45 GMT+0000 (Coordinated Universal Time)
Saved by
@arsal
import React from 'react';
import {
Button,
DrawerLayoutAndroid,
Text,
placeholder,
TextInput,
View,
StyleSheet
} from 'react-native';
import LoginTextbox from './Textbox'
function Signup({route})
{
return(
<View>
<LoginTextbox
placeholder='Enter Your Card No.'
keyboardType="numeric"
/>
<LoginTextbox
placeholder='Enter Password'
/>
<Text style={{fontSize:40}}>{route.params}</Text>
{/* <Button title="Signup" onPress={() => {}} /> */}
</View>
)
}
export default Signup
content_copyCOPY
Comments