mac os
Expected behaviour
the slider is displayed on the page
Actual behaviour
the swiper is displayed only after swiping (it does not matter which way)
when you first open the application everything is ok
further in the application I exit my profile and log into it
and when I open the page where the swiper is located I see an empty place. if I swipe the screen the swiper immediately appears and no longer disappears (until I exit my profile again)
tried to enter different users
-
1.open app
2.log out
3.login
my code

when i just opened the page

swiped across the screen

Having a similar issue here
+1 on ios
Have you tried this? https://github.com/leecade/react-native-swiper/issues/906#issuecomment-449013745
I had the same issue and the solution with key={Date.now()} didn't work for me. I needed to add removeClippedSubviews={false} to fix this (but I don't understand why).
Hi @GauthierG @abeeralshaer
the solution with key={Date.now()} didn't work for me too
removeClippedSubviews = {false} solved the problem
Thanks!
@Jendyy
Me either. But my problem was totally different. The problem was that the swiper doesn't update after re-rendering. So I had to put the key something that changes like email/ which first is undefined then comes as a string.
Most helpful comment
Hi @GauthierG @abeeralshaer
the solution with key={Date.now()} didn't work for me too
removeClippedSubviews = {false} solved the problem
Thanks!