Let’s start Adding your credit card information in an application involves many validations since you want to make sure that all information is added properly. There are a few things we can do to improve the user experience when adding this information such as presenting the form in a nice friendly way and adding instant […]
Quick tip – Floating Decimal Text in Xamarin Forms
Recently I was talking with my designer pal Claudio, about the importance of the little details when developing a mobile app, little things such as colors, formatted text can change the user experience. In this article I’m going to show you a quick tip on how to show the decimal numbers in a better way. […]
Extending TabbedPage in Xamarin Forms
When working with the TabbedPage in most cases we have a design requirement that require us to do some customizations. In this article I’m going to show you how to customize your TabbedPage by doing some cool stuff, that covers the following topics: Bottom Tabbed Page Adding custom font/selecting text color to the Tab item […]
Adjusting elements when keyboard shows in Xamarin Forms
When developing forms, a good practice is that when the keyboard is shown we shouldn’t hide the text entries behind it. Instead of that the text entry should raise up while typing. This is pretty easy to do in Xamarin Forms, by just adding the entry inside the Scrollview and that’s it. But what happens […]