Skip to content

Commit

Permalink
Fix SwipeableActionButton styling. (#23113)
Browse files Browse the repository at this point in the history
Summary:
Thank you for sending the PR! We appreciate you spending the time to work on these changes.
Help us understand your motivation by explaining why you decided to make this change:

Changelog:
----------

Help reviewers and the release process by writing your own changelog entry. See http://facebook.github.io/react-native/docs/contributing#changelog for an example.

[General] [Fixed] - Same style was applied twice to SwipeableQuickActionButton in a recent commit causing problems with the buttons layout.
Pull Request resolved: #23113

Differential Revision: D13781896

Pulled By: cpojer

fbshipit-source-id: 659ddaed32b6a1e90080344ea3b0b42088fd9783
  • Loading branch information
varungupta85 authored and facebook-github-bot committed Jan 23, 2019
1 parent 9672c2e commit ad52f52
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ class SwipeableQuickActionButton extends React.Component<{
* found when Flow v0.82 was deployed. To see the error delete this comment
* and run Flow. */
style?: ?DeprecatedViewPropTypes.style,
/* $FlowFixMe(>=0.82.0 site=react_native_fb) This comment suppresses an error
* found when Flow v0.82 was deployed. To see the error delete this comment
* and run Flow. */
containerStyle?: ?DeprecatedViewPropTypes.style,
testID?: string,
text?: ?(string | Object | Array<string | Object>),
/* $FlowFixMe(>=0.82.0 site=react_native_fb) This comment suppresses an error
Expand Down Expand Up @@ -64,8 +68,9 @@ class SwipeableQuickActionButton extends React.Component<{
<TouchableHighlight
onPress={this.props.onPress}
testID={this.props.testID}
underlayColor="transparent">
<View style={this.props.style}>{mainView}</View>
underlayColor="transparent"
style={this.props.containerStyle}>
{mainView}
</TouchableHighlight>
);
}
Expand Down

0 comments on commit ad52f52

Please sign in to comment.