Skip to main content

Posts

Showing posts from 2021

#1. Customize Navigation bar in Xamarin forms

Welcome Folks! We are pleased to share some Xamarin Forms related info that may help you.Xamarin Forms is a cross-platform framework that allows us to share both UI code and business logic across platforms.Guys you can refer to https://visualstudio.microsoft.com/xamarin/ in detail.   Navigation bar is a very important part of Mobile apps that gives description of your entire app theme and help user to understand motive of this page.Here we are to get some basic information how we can use it as per our requirement. What we have faced previously is we have to set same navigation color or one theme color in our native classes that is style.cs for Android and App Delegate for iOS. But now we have option to set it as per our pages requirement and choice. Lets go through each step and reach to our requirement: Step 1: Create Interface in your Portable project. public interface IStatusBarStyleInterface {   void SetLightTheme(); ...