This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Runtime.CompilerServices; | |
using Xamarin.Forms; | |
namespace YourAwesomeApp | |
{ | |
public class BaseView : ContentView | |
{ | |
private ContentPage _parentPage; | |
private bool _registered; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using Foundation; | |
using Xamarin.Forms; | |
using Xamarin.Forms.Platform.iOS; | |
using YourAwesomeApp.iOS.Renderers; | |
[assembly: ExportRenderer(typeof(Shell), typeof(ShellCustomRenderer))] | |
namespace YourAwesomeApp.iOS.Renderers | |
{ |