P41.Navigation 1.1.0-beta.0

This is a prerelease version of P41.Navigation.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package P41.Navigation --version 1.1.0-beta.0
NuGet\Install-Package P41.Navigation -Version 1.1.0-beta.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="P41.Navigation" Version="1.1.0-beta.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add P41.Navigation --version 1.1.0-beta.0
#r "nuget: P41.Navigation, 1.1.0-beta.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install P41.Navigation as a Cake Addin
#addin nuget:?package=P41.Navigation&version=1.1.0-beta.0&prerelease

// Install P41.Navigation as a Cake Tool
#tool nuget:?package=P41.Navigation&version=1.1.0-beta.0&prerelease

Release NuGet MIT License

A project for key to view navigation using ReactiveUI while providing ViewModel creation and navigation aware interface.

Platforms

Platform TFM NuGet
.NET Standard 2.0 netstandard2.0
.NET 6.0 Android net6.0-android
.NET 5.0 WPF net5.0-windows7.0
.NET 5.0 WinUI net5.0-windows10.0.19041
UWP 16299 uap10.0.16299

Installation

Replace X with the version you want!

Method Command
Package Manager Install-Package P41.Navigation -Version X
Package Reference <PackageReference Include="P41.Navigation" Version="X" />
.NET CLI dotnet add package P41.Navigation --version X

Getting Started

You get started by configuring the NavigationHost for a platform:

// UWP platform
new NavigationHost()
    .AddPair("page1", static () => typeof(Page1), static () => new Page1ViewModel())
    .AddPair("page2", static () => typeof(Page2), static () => new Page2ViewModel())
    .AddPair("page3", static () => typeof(Page3), static () => new Page3ViewModel());

Then from your shared code (eg: netstandard) you call navigation methods:

host = INavigationHost; // Injected

// Shared ViewModel constructor
Navigate = ReactiveCommand.Create<string>(page =>
{
    var request = new NavigationRequest(page);
    host.Navigate(request);
});

GoBack = ReactiveCommand.Create<Unit>(_ =>
{
    host.GoBack());
}

There are also samples in the samples folder to try.

Build

Install Visual Studio 2022 Preview and .NET 6.0

Clone the project and open the solution then you just build the whole solution or project.

Contribute

Contributions are welcome and appreceated, before you create a pull request please open a GitHub Issue to discuss what needs changing and or fixing if the issue doesn't exist!

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net5.0-windows7.0 is compatible.  net5.0-windows10.0.19041 is compatible.  net6.0 was computed.  net6.0-android was computed.  net6.0-android30.0 is compatible.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap10.0.16299 is compatible. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.6.0-beta.1 99 11/19/2022
1.5.0-beta.10 104 8/4/2022
1.5.0-beta.8 106 8/4/2022
1.5.0-beta.5 116 2/19/2022
1.5.0-beta.4 111 2/10/2022
1.5.0-beta.3 111 2/9/2022
1.5.0-beta.1 124 1/31/2022
1.4.0-beta.4 143 10/5/2021
1.4.0-beta.3 207 10/2/2021
1.4.0-beta.0 178 9/30/2021
1.3.0-beta.0 174 9/28/2021
1.2.0-beta.0 176 8/22/2021
1.1.0-beta.0 148 8/13/2021
1.0.0-beta.1 150 8/11/2021