When developing mobile applications sometimes we want to take the user to a map when tapping an address/location name. Launching the native map app installed by default (Google Maps in Android/ Maps in iOS) is pretty easy using Xamarin Essentials. To use this library you can do it in three simple steps: 1-Install the plugin […]
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 […]