jfilter / react-native-onboarding-swiper

🛳 Delightful onboarding for your React-Native app
https://www.npmjs.com/package/react-native-onboarding-swiper
Other
971 stars 179 forks source link

The dot indicator does not change, and the next button goes to 2nd screen #141

Open Bilal-Abdeen opened 1 year ago

Bilal-Abdeen commented 1 year ago

Thank you for the excellent library.

I have a strange issue! The dot indicator does not change when the user moves between screens, it always shows the 1st dot indicator as the active one! Moreover, the next button always goes to the 2nd screen in the array. Last, the pageIndexCallback does not return anything!

<Onboarding
    pages={[
        {
            backgroundColor: "red",
            image: <Image source={require("../../images/manager.jpg")} />,
            title: "screen 1",
            subtitle: "screen 1",
        },
        {
            backgroundColor: "red",
            image: <Image source={require("../../images/invite.jpg")} />,
            title: "screen 2",
            subtitle: "screen 2",
        },
        {
            backgroundColor: "red",
            image: <Image source={require("../../images/apply.jpg")} />,
            title: "screen 3",
            subtitle: "screen 3",
        },
    ]}
    pageIndexCallback={(pageIndex) => console.log("pageIndex:", pageIndex, )} // does NOT work!?
/>)}
Bilal-Abdeen commented 1 year ago

I found the solution. <Onboarding /> was inside <SafeAreaView></SafeAreaView>. When I removed the surrounding <SafeAreaView>, everything worked just fine! If this is the intended behaviour, I think the documentation should mention that <Onboarding /> should NOT be enclosed in a <SafeAreaView>.

VVVi commented 1 year ago

This problem appears for Android, and was fixed by adding flatlistProps={{ viewabilityConfig: undefined }} to <Onboarding />.