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

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 1,506 8/20/2024
9.0.401-pre 1,628 2/14/2024
9.0.271-pre 3,319 10/8/2023
9.0.264-pre 2,839 10/7/2023
8.1.97 957,746 5/24/2021
8.0.0.1909 730,515 10/21/2020
8.0.0.1850-pre 7,187 8/25/2020
8.0.0.1740-pre 7,103 5/5/2020
7.2.0.1422 4,877,399 11/21/2019
7.2.0.1367 213,179 7/24/2019
7.2.0.1347-pre 11,278 6/11/2019
7.2.0.1233-pre 6,765 5/6/2019
7.2.0.1038-pre 9,397 2/20/2019
7.2.0.708-pre 5,420 12/4/2018
7.1.0.431 10,142,712 10/15/2018
7.1.0.279-pre 6,680 9/20/2018
7.1.0.172-pre 39,180 6/15/2018
7.1.0.135-pre 5,507 5/9/2018
7.1.0.123-pre 21,301 4/2/2018
7.0.0.396 271,513 1/22/2018
7.0.0.362 26,071 1/12/2018
7.0.0.336-pre 15,690 12/7/2017
7.0.0.269-pre 10,618 11/16/2017
7.0.0.168-pre 23,458 10/13/2017
7.0.0.124-pre 8,982 10/6/2017
7.0.0-pre1 5,866 9/22/2017
6.3.0 197,353 3/25/2017
6.3.0-pre2 6,436 2/26/2017
6.3.0-pre1 16,067 11/2/2016
6.2.0 45,678 8/9/2016
6.1.0-pre7 4,380 7/15/2016
6.1.0-pre6 4,254 6/21/2016
6.1.0-pre5 6,142 5/5/2016
6.1.0-pre4 5,697 4/5/2016
6.1.0-pre3 8,459 1/20/2016
6.1.0-pre2 3,970 12/10/2015
6.1.0-pre1 3,934 12/3/2015
6.0.1 10,610 10/26/2015
6.0.0 5,541 10/14/2015
5.9.0-pre2 3,595 10/12/2015
5.8.0-pre1 3,904 10/8/2015
5.7.0-pre3 4,233 6/10/2015
5.7.0-pre2 3,396 6/10/2015
5.7.0-pre1 3,966 6/8/2015
5.6.1-pre1 3,848 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