Skip to content

Instantly share code, notes, and snippets.

public class NavigationContainer : INavigationContainer
{
private readonly NavigationPage _page = null;
public event EventHandler<IViewNavigationArgs> OnPopped;
private Queue<object> _argQueue = new Queue<object>();
private AsyncLock _lock = new AsyncLock();
public string CurrentViewKey { get; set; }
public NavigationContainer(NavigationPage page)
{
public class App : Application
{
public App()
{
new Bootstrapper().Init().Get<IStackRunner>().Run(TeslaDefinition.Stacks.Authentication);
}
public class HonkOperation : IOperation
{
IControlModel _model = null;
public HonkOperation(IControlModel model)
{
_model = model;
}
public bool ChainedRollback { get; private set; } = false;