A quick tour flow allows you to understand what’s an application about and how it works before using it. The most common way is by creating an Onboarding screen (Which is an independent screen that shows some instructive images on how to use the application), but that’s not the only way to do this. In […]
Tips and Ticks when creating a Custom Control in Xamarin Forms. Part. 2
In the first part of this article, I showed different tips when creating a custom control, in this part I’ll be covering some additional tips. As in the previous article, I’m NOT going to show you how to create a custom control (if you want to learn about that you can read this great article by […]
Tips and Ticks when creating a Custom Control in Xamarin Forms. Part. 1
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 […]
Stop doing IsVisible=“true/false” to Show/Hide Views in RunTime in Xamarin Forms
When developing UI a common use case is to hide/show a View according to a certain condition, when thinking on how to do this the first thing that comes to mind is to add an IsVisible property and just hide/show it according to a condition but doing that has performance implications since hiding an element […]