dansiegel / Mobile.BuildTools

The Mobile.BuildTools makes it easier to develop code bases in a clean, consistent, secure, and configurable way. Determine at Build which environment your app needs to run on, and what Client Secrets it should have. Plus many more amazing features!
http://mobilebuildtools.com
MIT License
228 stars 29 forks source link

Bump Prism.DryIoc.Forms from 8.0.0.1909 to 8.1.97 #235

Closed dependabot[bot] closed 3 years ago

dependabot[bot] commented 3 years ago

Bumps Prism.DryIoc.Forms from 8.0.0.1909 to 8.1.97.

Release notes

Sourced from Prism.DryIoc.Forms's releases.

8.1.97

Prism 8.1

Prism 8.1 is largely a service pack release for Prism 8.0. If upgrading from Prism 7, it is recommended that you skip Prism 8.0 and instead use 8.1. Additionally Prism 8.1 offers a new Prism.Uno.WInUI platform target for those wishing to build either native WinUI3, or Cross Platform WinUI 3 apps with Uno Platform.

Bugs Fixed

  • [Bug] Prism.Forms.Regions in xaml not working when content view in top child #2415
  • [Enhancement] Apply AutowireViewModel automatically when using RegisterViewWithRegion #2236
  • [Enhancement] Support FlyoutPage from Xamarin.Forms 5 #2239
  • Make SetNavigationServiceForPage protected #2288
  • Handle Android Hardware GoBack #2391
  • [Enhancement] Added more MVVM Friendly APIs for registering Views with a Region (All Platforms)
  • fix: [UWP][WinUI] Support for RegionManager.IsInDesignMode #2419
  • Use the Target Element BindingContext instead of the Page VM #2404
  • Fixing DI NavigationService resolution #2354 #2218
  • Add support for WinUI 3 #2393
  • Non-generic register for navigation with view-model #2257
  • Update WPF to .NET 5 #2250

Prism.Forms

Additional updates have been done for Prism.Forms.Regions. This better aligns the API with the original WPF API.

Android GoBack

Note that for the new Android GoBack support for Prism.Forms you must update the OnBackPressed in the MainActivity. You may await the call to handle the result. This result could be generated from either a Dialog or Page Navigation result.

public override async void OnBackPressed()       
{            
    var result = await PrismPlatform.OnBackPressed(this);            
    if (!result.Success)            
    {
        System.Diagnostics.Debugger.Break();    
        if (result.Exception != null)    
        {    
            Console.WriteLine(result.Exception);
        }    
    }      
}
Commits


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)