Get stuck when quick swiper
See original GitHub issuePlease take a look
here my code.
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from 'react';
import {
StyleSheet,
Text,
View,
TouchableOpacity,
Image,
FlatList
} from 'react-native';
import CardStack, { Card } from 'react-native-card-stack-swiper';
const data = []
for (var i = 0; i < 10; i++) {
data.push({ key: i + 1 })
}
export default class App extends Component<{}> {
constructor(props){
super(props);
this.state = { dataCard: data };
}
renderItem(item) {
return (
<CardStack
style={styles.content}
renderNoMoreCards={() => <Text style={{ fontWeight: '700', fontSize: 18, color: 'gray' }}>No more cards :(</Text>}
ref={swiper => { this.swiper = swiper }}
onSwiped={() => console.log('onSwiped')}
onSwipedLeft={() => console.log('onSwipedLeft')}
>
<Card style={[styles.card, styles.card1]}>
<Text style={styles.label}>{item.key} a</Text>
</Card>
</CardStack>
)
}
render() {
return (
<View style={{ flex: 1 }}>
<FlatList
data={this.state.dataCard}
// data={[{key: 'a'}, {key: 'b'}]}
renderItem={({ item }) => this.renderItem(item)}
/>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
flexDirection: 'column',
backgroundColor: '#f2f2f2',
},
content: {
flex: 1,
// alignItems: 'center',
// justifyContent: 'center',
height: 500,
// width: 200,
borderWidth: 1,
borderColor: 'green'
},
card: {
width: 320,
height: 470,
// backgroundColor: '#FE474C',
borderRadius: 5,
shadowColor: 'rgba(0,0,0,0.5)',
shadowOffset: {
width: 0,
height: 1
},
shadowOpacity: 0.5,
borderWidth: 1
},
card1: {
// backgroundColor: '#FE474C',
},
card2: {
backgroundColor: '#FEB12C',
},
label: {
lineHeight: 400,
textAlign: 'center',
fontSize: 55,
fontFamily: 'System',
// color: '#ffffff',
backgroundColor: 'transparent',
},
footer: {
flex: 1,
justifyContent: 'center',
alignItems: 'center'
},
buttonContainer: {
width: 220,
flexDirection: 'row',
justifyContent: 'space-between',
},
button: {
shadowColor: 'rgba(0,0,0,0.3)',
shadowOffset: {
width: 0,
height: 1
},
shadowOpacity: 0.5,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
zIndex: 0,
},
orange: {
width: 55,
height: 55,
borderWidth: 6,
borderColor: 'rgb(246,190,66)',
borderWidth: 4,
borderRadius: 55,
marginTop: -15
},
green: {
width: 75,
height: 75,
backgroundColor: '#fff',
borderRadius: 75,
borderWidth: 6,
borderColor: '#01df8a',
},
red: {
width: 75,
height: 75,
backgroundColor: '#fff',
borderRadius: 75,
borderWidth: 6,
borderColor: '#fd267d',
}
});
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:5
Top Results From Across the Web
iOS stuck when quick scrolling with loop enabled #245 - GitHub
The issue is only for iOS, Android works fine. I was able to reproduce it both on real device and in simulator. I...
Read more >Swiper slider vertical scroll stucked on slide 1 but works well ...
Each swiper contains dynamic content. Onloading the page the first swiper is in the viewport and while scrolling vertically it gets stuck. After ......
Read more >screen is stuck at ''SWIPE UP TO UNLOCK - Apple Community
1. Quickly press Volume Up, ; 2. Quickly Volume Down ; 3. Press and hold the Power Button.
Read more >Use your Chromebook touchpad - Google Support
Adjust how quickly your pointer moves: Move the sliders next to "Touchpad speed" or "Mouse speed." Choose type of scrolling: Turn off Reverse...
Read more >Moto G Power: Stuck or Frozen Screen? Easy Fix! - YouTube
0:00 · New! Watch ads now so you can enjoy fewer interruptions. Got it ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I believe that the problem is in the onPanResponderTerminate. Leaving it empty is causing the issue on Android. Based on what I found and tested,
onPanResponderTerminate
should have the same function than onPanResponderRelease, in order to reset the card position. I’ll try to create a PR, but I hope at least the comment can help others.I was facing same issue, I have
<ScrollView>
as main component inside<Card>
, SettingzIndex
to<CardStack>
helped me,Here is my code