Creating a custom control is a common thing to do when developing a Xamarin Forms application. In many cases, the main purpose of creating one is to have a reusable control that we can use across all our application. In this article, I’m NOT going to show you how to create a custom control (if […]
Scroll Reveal in Xamarin Forms
A few weeks ago, I got this request from Zaw Htut via Twitter, on how to do a Scroll Reveal using a ListView in Xamarin Forms. In this article, I will show you how to do it step by step. Let’s understand the requirements When looking at the GIF above, an interesting behavior can be […]
Expandable Paragraph Control in Xamarin Forms
A time ago I had a requirement about an expendable paragraph control to support show/hide text when clicking into a button, that way the text is not fully displayed on the screen, and we can save space in the screen. I’m this article I’m going to show you how to do it. Let’s start step […]
Scratch View in Xamarin Forms
Recently I was exploring a few random applications and found an interesting behavior that was about scratching an image and revealing the result while doing it. So I was curious about how to do that in Xamarin Forms and came across this sample, so I took it as a base and created my own ScratchViewControl […]