Commit 0e9b47fc authored by Pramodh Rajapakse's avatar Pramodh Rajapakse

added text input component

parent 729ed6ff
import React from 'react';
import { StyleSheet, TextInput } from 'react-native';
import themeColors from '../assets/colors';
export const AppTextInput = (props) => {
return(
<TextInput style={styles.input}/>
)
}
const styles = StyleSheet.create({
input:{
alignItems: "center",
padding: 10,
fontSize: 16,
borderBottomColor: themeColors.SECONDARY_COLOR,
borderBottomWidth: 1,
},
Text: {
fontFamily: 'Poppins-Black',
fontSize: 22,
color: themeColors.WHITE
}
});
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