Skip to content
This repository has been archived by the owner on Apr 15, 2021. It is now read-only.

修改InteractionManager.runAfterInteractions后动画不停止的问题 #29

Merged
merged 1 commit into from Apr 11, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/QRScanner.js
Expand Up @@ -349,7 +349,8 @@ class QRScannerRectView extends Component {
Animated.timing(this.state.animatedValue, {
toValue: this.props.rectHeight,
duration: this.props.scanBarAnimateTime,
easing: Easing.linear
easing: Easing.linear,
sInteraction: false
}).start(() => this.scannerLineMove());
}
}
Expand Down