mirror of
https://github.com/bitwarden/android.git
synced 2024-12-29 04:18:33 +03:00
17 lines
392 B
C#
17 lines
392 B
C#
|
using Bit.iOS.Renderers;
|
|||
|
using Xamarin.Forms;
|
|||
|
using Xamarin.Forms.Platform.iOS;
|
|||
|
|
|||
|
[assembly: ExportRenderer(typeof(TabbedPage), typeof(CustomTabbedRenderer))]
|
|||
|
namespace Bit.iOS.Renderers
|
|||
|
{
|
|||
|
public class CustomTabbedRenderer : TabbedRenderer
|
|||
|
{
|
|||
|
public CustomTabbedRenderer()
|
|||
|
{
|
|||
|
TabBar.Translucent = false;
|
|||
|
TabBar.Opaque = true;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|