invertase / react-native-material-design

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

How to set Button width ? #72

Closed ttpro1995 closed 8 years ago

ttpro1995 commented 8 years ago

I would like to set button width styles. But it does not work. Nothing change.

          <Button
          style={{width: 200}}
          text = 'Login with Meow'
          onPress={this.loginMeow}

          />
Ehesp commented 8 years ago

You could do:

<View style={{width: 200}}>
          <Button
          text = 'Login with Meow'
          onPress={this.loginMeow}
          />
</View>
ttpro1995 commented 8 years ago

Thank @Ehesp , it worked.