Skip to content

Commit

Permalink
feat!: Stop using Android native popups by default
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Native popups on Android were frequently causing problems with more complex controls like AutoSuggestBox and MenuBar. To aleviate these problems we are switching to use the unified managed popups everywhere instead. This may be breaking apps which depend on the native popups logic or layout.
  • Loading branch information
MartinZikmund committed Jul 18, 2022
1 parent ba33676 commit d7dee36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Uno.UI/FeatureConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ public static class Popup
/// <summary>
/// Use a native popup to display the popup content. Otherwise use the <see cref="PopupRoot"/>.
/// </summary>
public static bool UseNativePopup { get; set; } = true;
public static bool UseNativePopup { get; set; } = false;
#endif

/// <summary>
Expand Down

0 comments on commit d7dee36

Please sign in to comment.