Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Render buttons after on layout #103

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"description": "A powerful React Native swipe component",
"main": "lib/index.js",
"scripts": {
"prepare": "make build",
"build": "make build",
"lint": "make lint"
},
Expand Down
12 changes: 10 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ export default class Swipeable extends PureComponent {
onRef: PropTypes.func,
onPanAnimatedValueRef: PropTypes.func,
swipeStartMinDistance: PropTypes.number,
renderButtonsAfterOnLayout: PropTypes.bool,

// styles
style: ViewPropTypes.style,
Expand Down Expand Up @@ -151,7 +152,9 @@ export default class Swipeable extends PureComponent {
// misc
onRef: noop,
onPanAnimatedValueRef: noop,
swipeStartMinDistance: 15
swipeStartMinDistance: 15,
renderButtonsAfterOnLayout: false,

};

state = {
Expand Down Expand Up @@ -560,8 +563,13 @@ export default class Swipeable extends PureComponent {
}

_renderButtons(buttons, isLeftButtons) {
const {leftButtonContainerStyle, rightButtonContainerStyle} = this.props;
const {leftButtonContainerStyle, rightButtonContainerStyle, renderButtonsAfterOnLayout} = this.props;
const {pan, width} = this.state;

if (renderButtonsAfterOnLayout && width === 0) {
return null;
}

const canSwipeLeft = this._canSwipeLeft();
const canSwipeRight = this._canSwipeRight();
const count = buttons.length;
Expand Down