Replies: 2 comments
-
This can be shown as alerts when on iOS and Android. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Each Platform handles these scenarios differently, however, some cross-platform |
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
-
I currently use Windows Forms and in most of my programs I use the windows MessageBox APIs.
These help in cases where I want to prompt the user to choose an option I want them to select and filter out if they pressed:
For Windows Forms that is easy, however if I wanted the application to work for Windows, Mac, and Linux for a single codebase I would like to be able to have something similar in MAUI.
While it can be argued that for Windows my applications should use the newer style of MessageBoxes that allows to customize the whole thing, it's also not as simple as the older one.
MessageBoxes should be supported on Mac and Linux as well easily it just depends on how to actually make them on a Mac and ensure they are created just like how they are created on Windows.
Beta Was this translation helpful? Give feedback.
All reactions