invertase / react-native-material-design

React Native UI Components for Material Design
http://react-native-material-design.github.io
MIT License
3.15k stars 366 forks source link

Button text not aligned #162

Open gokulkulkarni1987 opened 7 years ago

gokulkulkarni1987 commented 7 years ago

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, screenshot_20170802-155332

srsugara commented 7 years ago

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

gokulkulkarni1987 commented 7 years ago

Thank you, but because of such issues, i stopped using this library.