Prism.Forms 5.7.0-pre3

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 (43)

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

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

Prism.DryIoc.Forms

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.537 2,928 8/20/2024
9.0.401-pre 1,692 2/14/2024
9.0.271-pre 3,386 10/8/2023
9.0.264-pre 2,902 10/7/2023
8.1.97 976,524 5/24/2021
8.0.0.1909 741,448 10/21/2020
8.0.0.1850-pre 7,282 8/25/2020
8.0.0.1740-pre 7,183 5/5/2020
7.2.0.1422 4,980,335 11/21/2019
7.2.0.1367 214,688 7/24/2019
7.2.0.1347-pre 11,472 6/11/2019
7.2.0.1233-pre 6,832 5/6/2019
7.2.0.1038-pre 9,568 2/20/2019
7.2.0.708-pre 5,469 12/4/2018
7.1.0.431 10,365,588 10/15/2018
7.1.0.279-pre 6,789 9/20/2018
7.1.0.172-pre 39,287 6/15/2018
7.1.0.135-pre 5,575 5/9/2018
7.1.0.123-pre 21,621 4/2/2018
7.0.0.396 273,273 1/22/2018
7.0.0.362 26,172 1/12/2018
7.0.0.336-pre 15,843 12/7/2017
7.0.0.269-pre 10,699 11/16/2017
7.0.0.168-pre 23,586 10/13/2017
7.0.0.124-pre 9,107 10/6/2017
7.0.0-pre1 5,976 9/22/2017
6.3.0 198,428 3/25/2017
6.3.0-pre2 6,462 2/26/2017
6.3.0-pre1 16,132 11/2/2016
6.2.0 45,741 8/9/2016
6.1.0-pre7 4,404 7/15/2016
6.1.0-pre6 4,287 6/21/2016
6.1.0-pre5 6,165 5/5/2016
6.1.0-pre4 5,735 4/5/2016
6.1.0-pre3 8,488 1/20/2016
6.1.0-pre2 4,009 12/10/2015
6.1.0-pre1 3,961 12/3/2015
6.0.1 10,653 10/26/2015
6.0.0 5,579 10/14/2015
5.9.0-pre2 3,628 10/12/2015
5.8.0-pre1 3,943 10/8/2015
5.7.0-pre3 4,255 6/10/2015
5.7.0-pre2 3,418 6/10/2015
5.7.0-pre1 3,991 6/8/2015
5.6.1-pre1 3,876 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