-
-
Notifications
You must be signed in to change notification settings - Fork 137
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduce Dropdown #670
Introduce Dropdown #670
Conversation
One issue this has is that dropdown or picker on MacCatalyst shows the iOS version, which isn't really applicable. MAUI has the same issue with it's |
Still couldn't figure out customization logic, so this awaits in draft.
You're right, MAUI uses UIKit for MacCatalyst output and a MAUI app behaves like iPad application that runs on MacOS. But Xamarin.Mac was using AppKit to build desktop apps for MacOS. It can be enabled in MAUI currently but it's not default. Even MAUI team uses UIKit over AppKit on desktop, I'm not sure that should I consider it for now |
What is the purpose of a dropdown vs picker? |
It has a different UX. Instead of a blocking modal to pick an option, it drops down a menu to pick. On desktop it similar to picker but on mobile devices, it has a unique experience. |
TODO