When developing mobile applications, having a good UI/UX is one of the most important things. One way we can help with our UX by having smooth transitions between pages. Xamarin Forms uses the default standard transition navigation: But what if you want to go further? And do some of those cool transition animations that the […]
Simple Two Cards Transition Control in Xamarin Forms
I recently developed a simple control to transition between two cards using an overlay animation in Xamarin Forms. In this post, I want to share the result and also explain how I achieved each of my requirements. Let’s start When creating a custom control the first thing that comes to my mind is to separate […]
Plug and play animations in Xamarin Forms
Animations are important when developing a mobile app, it can make any boring application into a super fun one. Xamarin Forms makes it really easy to work with animations in the code behind but what if we want to create some simple animations that we can add to any control in a very easy way. […]
Lottie Animations Step by Step in Xamarin Forms
Lottie is a library created by Airbnb that allows you to run animations. It works by using a Json file that provides the content to render the animation. Thanks to Martijn van Dijk, this awesome library is also available on Xamarin Forms. For more information checkout the repository here: https://github.com/martijn00/LottieXamarin. Also, I would recommend checking out […]