1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-13 23:03:23 +00:00
Files
mobile/src/iOS/Controls/ExtendedTabbedPageRenderer.cs
2016-05-11 19:29:43 -04:00

24 lines
705 B
C#

using System;
using Bit.App.Controls;
using Bit.iOS.Controls;
using Xamarin.Forms;
using Xamarin.Forms.Platform.iOS;
[assembly: ExportRenderer(typeof(ExtendedTabbedPage), typeof(ExtendedTabbedPageRenderer))]
namespace Bit.iOS.Controls
{
public class ExtendedTabbedPageRenderer : TabbedRenderer
{
protected override void OnElementChanged(VisualElementChangedEventArgs e)
{
base.OnElementChanged(e);
var page = (ExtendedTabbedPage)Element;
TabBar.TintColor = page.TintColor.ToUIColor();
TabBar.BarTintColor = page.BarTintColor.ToUIColor();
TabBar.BackgroundColor = page.BackgroundColor.ToUIColor();
}
}
}