Hi Everyone,
I'm currently trying to get some animations to work with my Xamarin.Forms app- when I develop locally using the Emulator the animations look fine (albeit slow because its emulate), however when I deploy it to an actual android device the animations dont run. It essentially looks like it just skips over the entire animation and shows the end state.
In my specific case I am using a Swipe Card Layout (Syncfusion controls) - when I swipe the card, I want the swiped card to animate flipping over. While I realize the question might better be suited towards that vendor, it appears to me the animation problem would be outside the realm of their controls.
The code in question is just this:
var currentChild = this.SwipeCardLayout.Children[SwipeCardLayout.VisibleCardIndex]; await currentChild.RotateYTo(180, 1000, Easing.Linear);
The current child is just a view, so from my understanding this should work (again, this works fine on the emulator, just on the device it doesnt).
The device I am testing with is identified as OnePlus A6003 Android 10.0 - API 29
Any guidance in the right direction would be greatly appreciated.
--Chris