Reputation: 3167
I am using ionic + cordova on Visual Studio 2015
Is it possible to create native like dropdown using Ionic framework?
The current dropdown looks like http://play.ionic.io/app/3e4c1f91d962 this is not much appealing on device. Further, on Android device the text for option goes blank. However, only after selection, it shows the text.
Can we show it like the first image shown at http://baymard.com/blog/mobile-dropdown-navigation
Upvotes: 0
Views: 1171
Reputation: 394
Now the issue with this is that the <select>
tags are "Platform Specific" I am using the <select multiple="true">
and the simple <select>
tag on a hybrid app for iOS and android. On android it looks hideous, but on iOS it looks nice. That is something we can't really control. If you want to have a really nice looking dropdown, you might have to find a different way for drop downs other than HTML.
Upvotes: 1