Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Android issue #90

Open
ronbarrera opened this issue May 19, 2020 · 8 comments
Open

Android issue #90

ronbarrera opened this issue May 19, 2020 · 8 comments
Assignees
Labels
android Android related bug ios iOS related

Comments

@ronbarrera
Copy link

I have this issue on Android that when I flip the card, the text stays and gets flipped, then like a second later it switches to the backside. This issue happens just by running the demo code. For iPhone, it flips correctly showing the right content. does anyone else have this issue?

@LouisRaine
Copy link

I also have this issue

@HossamBhi
Copy link

I have this issue too

@jdponomarev
Copy link

jdponomarev commented Aug 3, 2021

I had to fix it like this:

const [opacityAnimation] = useState(new Animated.Value(1));
const opacity = opacityAnimation.interpolate({
  inputRange: [0, 1],
  outputRange: [0, 1],
});



onFlipStart={() => {
  if (Platform.OS === "android") {
	  Animated.timing(opacityAnimation, {
		  toValue: 0,
		  duration: 10,
		  useNativeDriver: false,
	  }).start(() => {});
	  setTimeout(() => {
		  Animated.timing(opacityAnimation, {
			  toValue: 1,
			  duration: 100,
			  useNativeDriver: false,
		  }).start(() => {});
	  }, 100);
  }
}}

@juandl
Copy link
Collaborator

juandl commented Feb 13, 2023

I will have a look!

@juandl juandl self-assigned this Feb 13, 2023
@juandl juandl added bug android Android related ios iOS related labels Feb 13, 2023
@pierroo
Copy link

pierroo commented Jul 4, 2023

any news on that?
2 years later, still happening :/

@juandl
Copy link
Collaborator

juandl commented Jul 6, 2023

@pierroo Will look into it

@Leroy231
Copy link

I have this same issue on iOS

@thenxkk
Copy link

thenxkk commented Apr 25, 2024

I also have this issue

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
android Android related bug ios iOS related
Projects
None yet
Development

No branches or pull requests

8 participants