react-native-simple-form
Version:
Form library for react-native to make forms easier.
29 lines (27 loc) • 503 B
JavaScript
import { StyleSheet } from 'react-native';
export default StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
marginTop: 20,
backgroundColor: '#F5FCFF'
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10
},
form: {
flex: 1,
padding: 10,
borderWidth: 1,
borderColor: 'rgba(222, 226,229, 1)'
},
input: {
height: 45,
padding: 10,
margin: 10,
borderWidth: 1,
borderColor: 'rgba(222, 226,229, 1)'
}
});