Windows
10
Which versions are you using:
Expect to load a sliding carousel on android
displays this weird screen

````
import React from "react";
import {
Dimensions,
View,
StyleSheet,
Text,
Platform
} from "react-native";
import Swiper from "react-native-swiper";
class Splash extends React.Component {
render() {
return (
loop={false}
>
Fun
play,chat,have fun
);
}
}
export default Splash;
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
````
Try running on expo
i have the same problem, it's not working for android!!
Same here, is not working on Android, react-native 0.55.3
Same here, using react-native 0.54.4. I tried downgrade to swipe version 1.5.12, without success :/
In IOS emulator works fine.
Also have the same error. Looks like this is because of react-navigation. If I put the same code to the new project without react-navigation, the content is appear.
Same here using react-native v0.52.0, one weird thing is when I am using Hot Reloading and make changes on loop attribute, the content will appear.
--- UPDATE ---
I am using the <Swiper> inside a <Modal> component, it's not working with react-navigation but works fine in react-native-navigation.
The only thing that seems to work is by wrapping the Swiper Component <Swiper></Swiper> with ScrollView instead of View
Same here with the same setup as @swingywc on Android. I've got the pagination indicators, but not the page contents.
Wrapping in a ScrollView hasn't solve the problem either.
It looks like the issue has something to do with the ViewPagerAndroid, take a look at this PR by @msutariya
Just solve the issue for myself, which is related to the Modal I have wrapped around it. See my comment on #435 for example code.
EDIT
Scratch that, only works on the first showing :(
Looked at the PR @alangumer and it works just fine, thanks!
I've tried doing the PR by @alangumer, which basically bypasses ViewPagerAndroid and use ScrollView 鈥撀爐he issue is, it doesn't support things like going to a specific index for Android. Did this use to work for Android before?
For me it was not working when <Swiper>'s parent had alignItems: 'center'. It worked fine when I removed that property. If it's relevant, the parent was an <ImageBackground> element with the following styles:
{
flex: 1,
justifyContent: 'flex-start',
alignItems: 'center',
}
It worked fine when I changed the parent styles to this:
{
height: '100%',
width: '100%',
}
But it also worked when I just commented out the alignItems rule I had originally.
TLDR: just remove alignItems: 'center' from the parent element.
@stevula you are my life savior. Thank you. ^^
@stevula removing alignItems: 'center' worked for me when the parent was a <View> element. Amazing catch.
[ android ] not work in a modal + parent view, even no alignItems.
*using react-navigation
Hey @stevula, lifesaver finding. What is your theory about the issue? Would you mind sharing it with me? Thanks in advance.
For me it was not working when
<Swiper>'s parent hadalignItems: 'center'. It worked fine when I removed that property. If it's relevant, the parent was an<ImageBackground>element with the following styles:{ flex: 1, justifyContent: 'flex-start', alignItems: 'center', }It worked fine when I changed the parent styles to this:
{ height: '100%', width: '100%', }But it also worked when I just commented out the
alignItemsrule I had originally.TLDR: just remove
alignItems: 'center'from the parent element.
I'm forever indebted to you. Thanks a lot
For me it was not working when
<Swiper>'s parent hadalignItems: 'center'. It worked fine when I removed that property. If it's relevant, the parent was an<ImageBackground>element with the following styles:{ flex: 1, justifyContent: 'flex-start', alignItems: 'center', }It worked fine when I changed the parent styles to this:
{ height: '100%', width: '100%', }But it also worked when I just commented out the
alignItemsrule I had originally.TLDR: just remove
alignItems: 'center'from the parent element.
@stevula Thank you so much : )
You are amazing
Most helpful comment
For me it was not working when
<Swiper>'s parent hadalignItems: 'center'. It worked fine when I removed that property. If it's relevant, the parent was an<ImageBackground>element with the following styles:It worked fine when I changed the parent styles to this:
But it also worked when I just commented out the
alignItemsrule I had originally.TLDR: just remove
alignItems: 'center'from the parent element.