user818700
user818700

Reputation:

How to remove styling of React Native Android Button

Is there a way to remove the styling from a React Native Android Button component? I'd like to remove / overwrite the:

Upvotes: 0

Views: 3469

Answers (1)

Eduardo Obregón
Eduardo Obregón

Reputation: 146

The Button Component accepts no style props, so you are unable to style it. You could create your own version of the button with any of the Touchables components like TouchableHighlight, or use an external module like react-native-button

Upvotes: 3

Related Questions