22 lines
640 B
C#
22 lines
640 B
C#
using Android.Content;
|
|
using Gallery.Droid.Renderers;
|
|
using Gallery.Droid.Renderers.AppShellSection;
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.Platform.Android;
|
|
|
|
[assembly: ExportRenderer(typeof(Shell), typeof(AppShellRenderer))]
|
|
namespace Gallery.Droid.Renderers
|
|
{
|
|
public class AppShellRenderer : ShellRenderer
|
|
{
|
|
public AppShellRenderer(Context context) : base(context)
|
|
{
|
|
}
|
|
|
|
protected override IShellBottomNavViewAppearanceTracker CreateBottomNavViewAppearanceTracker(ShellItem shellItem)
|
|
{
|
|
return new AppShellBottomNavViewAppearanceTracker(this, shellItem);
|
|
}
|
|
}
|
|
}
|