Replies: 3 comments
-
On mobile this could push to a modal dialog...? |
Beta Was this translation helpful? Give feedback.
0 replies
-
@freever I was thinking that before I posted, but the better minds than mine at MS could decide if that workflow works. :) |
Beta Was this translation helpful? Give feedback.
0 replies
-
Perhaps there should be an options parameter that could include [Flags]
public enum NavigationOptions
{
None = 0,
Animated = 1,
PreferNewWindow = 2,
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Summary
XF doesn't natively support multiple windows, make it so number 1!
Currently have to drop into platform specific code (via DI) to implement this, and provides a sub optimal solution.
API Changes
INavigation.PushToNewWindowAsync(Page page);
Intended Use Case
On desktop platforms this will push the page (or NavigationPage) into a new window. On mobile it will perform the same as INavigation.PushAsync until such time that mobile supports multi window (if ever).
Beta Was this translation helpful? Give feedback.
All reactions