I am working on xamarin. forms application, where I could able to apply the navigation bar in gradient colors but I am unable to apply those gradient colors for the tabbed page in Android and iOS platforms. Is there any way to apply gradient color for the tabbed page in xamarin.forms.
Not understand which effects you want.When have posted image,I will check this answer.
Maybe this is your want, do this in your Xamarin.Forms project like this.
var tabbedPage = new TabbedPage()
{
BackgroundColor = Color.LightGray;
BarBackgroundColor = Color.Black,
BarTextColor = Color.White
};
Or set those properties in .xaml
.