angusbreno / Naylah

Unified toolkit to build ____

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Naylah Toolkit for X .net

TFSBuild

Naylah.Core NuGet

Naylah.Xamarin NuGet

forthebadge forthebadge forthebadge forthebadge

Contain useful libraries, controls, helpers, architecture, etc. the intention is to create a community of developers who contribute to standardization of user interfaces, model and data flow.

You are welcome to join the Naylah Community or make PRs. (Please do 😄)

It's just to simple to use.

Installation

Naylah.Xamarin is available as a NuGet package. You can install it using the NuGet Package Console window:

PM> Install-Package Naylah.Xamarin

After installation, just replace Xamarin default Application class by bootstrapper and start a NavigationServiceFacotry with a MasterDetail page or a NavigationPage.

public class App : BootStrapper
{
  public static App CurrentApp { get; private set; }
  public App()
  {
      CurrentApp = this;
      NavigationServiceFactory(new NavigationPage(new SplashPage()));
  }
}

Usage

NavigationService

NavigationService.NavigateAsync(var new Page, stringparam, true); //
NavigationService.NavigateModalAsync(var new Page, stringparam, true); //
...

About

Unified toolkit to build ____


Languages

Language:C# 100.0%