AlexGo
AlexGo

Reputation: 487

implement a mobile action search bar in flex 4.11 like ios

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 ?enter image description here

Upvotes: 0

Views: 335

Answers (1)

Josh
Josh

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

Related Questions