Prism.Forms 5.7.0-pre3

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This is a prerelease version of Prism.Forms.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Prism.Forms --version 5.7.0-pre3
NuGet\Install-Package Prism.Forms -Version 5.7.0-pre3
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="Prism.Forms" Version="5.7.0-pre3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Prism.Forms --version 5.7.0-pre3
#r "nuget: Prism.Forms, 5.7.0-pre3"
#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 Prism.Forms as a Cake Addin
#addin nuget:?package=Prism.Forms&version=5.7.0-pre3&prerelease

// Install Prism.Forms as a Cake Tool
#tool nuget:?package=Prism.Forms&version=5.7.0-pre3&prerelease

This is an early preview of Prism for Xamarin.Forms.  Please let us know what you think.  Your feedback will be greatly appreciated.

A walk through on how to get started with Prism for Xamarin.Forms: http://brianlagunas.com/

Feel free to contribute to this project on GitHub.

Product Compatible and additional computed target framework versions.
MonoAndroid monoandroid10 is compatible. 
Windows Phone wp8 is compatible.  wp81 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (44)

Showing the top 5 NuGet packages that depend on Prism.Forms:

Package Downloads
Prism.Plugin.Popups

Prism Forms Plugin to provide Popup Navigation working with the Rg.Plugins.Popup library

Prism.Unity.Forms The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Use these extensions to build Xamarin.Forms applications with Prism and Unity.

Prism.DryIoc.Forms The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Use these extensions to build Xamarin.Forms applications with Prism and DryIoc.

SheshaMobile.Modules.Home

The home module contains common functionality and essetntials required to build an app home page

SheshaMobile.Modules.Events

The events module contains common functionality and essetntials required to build apps that have event specific functionality

GitHub repositories (10)

Showing the top 5 popular GitHub repositories that depend on Prism.Forms:

Repository Stars
cocoa-mhlw/cocoa
reactiveui/splat
Makes things cross-platform
PrismLibrary/Prism-Samples-Forms
Samples that demonstrate how to use various Prism features with Xamarin.Forms
muak/AiForms.SettingsView
SettingsView for Xamarin.Forms
o1298098/Xamarin-CloudMusic
Xamarin.Forms goodlooking UI sample
Version Downloads Last updated
9.0.401-pre 1,278 2/14/2024
9.0.271-pre 3,192 10/8/2023
9.0.264-pre 2,721 10/7/2023
8.1.97 880,874 5/24/2021
8.0.0.1909 691,784 10/21/2020
8.0.0.1850-pre 7,023 8/25/2020
8.0.0.1740-pre 6,938 5/5/2020
7.2.0.1422 4,755,071 11/21/2019
7.2.0.1367 209,821 7/24/2019
7.2.0.1347-pre 10,996 6/11/2019
7.2.0.1233-pre 6,620 5/6/2019
7.2.0.1038-pre 9,133 2/20/2019
7.2.0.708-pre 5,342 12/4/2018
7.1.0.431 9,939,454 10/15/2018
7.1.0.279-pre 6,554 9/20/2018
7.1.0.172-pre 38,897 6/15/2018
7.1.0.135-pre 5,390 5/9/2018
7.1.0.123-pre 21,146 4/2/2018
7.0.0.396 267,872 1/22/2018
7.0.0.362 25,884 1/12/2018
7.0.0.336-pre 15,518 12/7/2017
7.0.0.269-pre 10,479 11/16/2017
7.0.0.168-pre 23,150 10/13/2017
7.0.0.124-pre 8,832 10/6/2017
7.0.0-pre1 5,749 9/22/2017
6.3.0 195,439 3/25/2017
6.3.0-pre2 6,339 2/26/2017
6.3.0-pre1 15,966 11/2/2016
6.2.0 45,404 8/9/2016
6.1.0-pre7 4,268 7/15/2016
6.1.0-pre6 4,171 6/21/2016
6.1.0-pre5 6,085 5/5/2016
6.1.0-pre4 5,612 4/5/2016
6.1.0-pre3 8,375 1/20/2016
6.1.0-pre2 3,897 12/10/2015
6.1.0-pre1 3,838 12/3/2015
6.0.1 10,473 10/26/2015
6.0.0 5,430 10/14/2015
5.9.0-pre2 3,536 10/12/2015
5.8.0-pre1 3,798 10/8/2015
5.7.0-pre3 4,139 6/10/2015
5.7.0-pre2 3,324 6/10/2015
5.7.0-pre1 3,879 6/8/2015
5.6.1-pre1 3,770 3/24/2015

Breaking Changes:
- INavigatioServiceAware has been removed.  You now inject the NavigationService in the VM constructor.  The parameter must be named "navigationService".

public void MainPageViewModel(INavigationService navigationService) {...}

New Features:
- Removed WeakRefernce in DelegateCommand and CompositeCommand
- Bug fix in NavigationService when using useModalNavigation parameter
- added navigation registration and navigation method overloads.
     Container.RegisterTypeForNavigation<MainPage, MainPageViewModel>();
     NavigationService.Navigate<MainPageViewModel>();
- Services that are registered with the Xamarin.Forms DependencyService are automatically resolved by Prism when requested in a constructor.  DependencyService.Get method calls are no longer needed.

Features include:
- IoC with Unity
- Commanding
- ViewModelLocator
- Event Aggregator
- Navigation