react-native-submit-button
Version:
Animated Submit button.
23 lines (21 loc) • 528 B
JavaScript
import { StyleSheet } from 'react-native';
export default StyleSheet.create({
buttonContainer: {
justifyContent: 'center'
},
button : {
height : 54,
borderRadius : 35,
alignItems : 'center',
justifyContent : 'center',
backgroundColor: 'white',
borderWidth: 4
},
text : {
fontSize : 22,
// fontFamily : 'proximanova-regular',
color : 'rgb(30, 205, 151)',
fontWeight : 'bold',
backgroundColor: 'transparent'
}
});