react-native-material-design
react-native-material-design copied to clipboard
Button text not aligned
I am using the following code to display a button,
```<Button
onPress={this.onButtonPress.bind(this)}
text='Login'
overrides={{ backgroundColor: '#007aff', textColor: '#fff' }}
raised
/>
The text in the button is not aligned at the centre, as shown in the below image,

I think you need to change button style value on Button.js file (./node_modules/react-native-material-design/lib/Button.js) like this :
top: Platform.OS === 'android' ? 2 : -4
change to :
top: -4
Thank you, but because of such issues, i stopped using this library.