rename from Pixiview to Gallery
This commit is contained in:
21
Gallery.Android/Renderers/AppShellRenderer.cs
Executable file
21
Gallery.Android/Renderers/AppShellRenderer.cs
Executable file
@ -0,0 +1,21 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user