Reputation: 487
I am building an mobile app and I need to create a search bar something like the iOS search bar.
Is this possible using flex 4.11 from Apache ?
Upvotes: 0
Views: 335
Reputation: 8149
Take a look at the Flex ActionBar
component that you have access to primarily when using ViewNavigator
-based apps. There isn't a pre-built way to run searches or even a search component, though. You would have to build a custom ActionBar
and skin for that ActionBar which would duplicate the functionality. You would also have to create a View
which displays the results and a controller for actually running the search.
Upvotes: 1