Reputation:
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
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