You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix options not working for Core
* Update AppBuilderExtensions.shared.cs
* Add Unit Tests
* Restore default Options after each test
* Add `event EventHandler ShouldUseStatusBarBehaviorOnAndroidModalPageOptionCompleted` to allowunit tests confirm that we initialized the AndroidDialogFragmentService
* `dotnet format`
---------
Co-authored-by: Brandon Minnick <13558917+TheCodeTraveler@users.noreply.github.com>
Co-authored-by: Brandon Minnick <13558917+brminnick@users.noreply.github.com>
// Pass `null` because `options?.Invoke()` will set options on both `CommunityToolkit.Maui` and `CommunityToolkit.Maui.Core`
28
-
builder.UseMauiCommunityToolkitCore(null);
29
-
30
27
// Invokes options for both `CommunityToolkit.Maui` and `CommunityToolkit.Maui.Core`
31
28
options?.Invoke(newOptions(builder));
32
29
30
+
// Pass `null` because `options?.Invoke()` will set options on both `CommunityToolkit.Maui` and `CommunityToolkit.Maui.Core`
31
+
// Be sure to call `.UseMauiCommunityToolkitCore(null)` after `options.Invoke(new Options(builder))` to ensure `CommunityToolkit.Maui.Core.Options` have already been set
0 commit comments