We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a33ab37 commit 0701e4fCopy full SHA for 0701e4f
src/Uno.UI/UI/Xaml/Controls/Flyout/FlyoutBase.cs
@@ -269,7 +269,7 @@ private protected virtual void OnClosed() { }
269
270
private protected virtual void OnOpened() { }
271
272
- protected virtual Control CreatePresenter() => throw new InvalidOperationException();
+ protected virtual Control CreatePresenter() => null;
273
274
private void OnPopupClosed(object sender, object e)
275
{
src/Uno.UI/UI/Xaml/Controls/TimePicker/TimePickerFlyout.cs
@@ -5,7 +5,7 @@ namespace Windows.UI.Xaml.Controls
5
6
partial class TimePickerFlyout : PickerFlyoutBase
7
8
-#if !__IOS__
+#if !__ANDROID__ && !__IOS__
9
protected override Control CreatePresenter() => throw new NotImplementedException();
10
#endif
11
0 commit comments