ActionBar should be implemented similarly to ListViews, probably in a custom component.
Discussion about the solution should be in #10, since to keep it in one place!
Minor note: might want to rename from AppBar to ActionBar, as that鈥檚 the name NativeScript uses.
Working on this one atm!
This will be the API. Working nicely now on iOS and Android, but will need to test a few more things before creating a PR:
<action-bar :title="subreddit">
<navigation-button text="Back!" android.systemIcon="ic_menu_back" @tap="navigationButtonPressed"></navigation-button>
<action-item android.systemIcon="ic_menu_refresh" ios.systemIcon="13" @tap="refresh"></action-item>
<action-item text="change" android.position="popup" ios.position="right" @tap="chooseSubreddit"></action-item>
</action-bar>
Very nice @EddyVerbruggen! Can't wait to test that :)
Would be cool if you could take a look, @rigor789!
I've adjusted the listview and tab samples to include an action-bar, making them look like this:



This has been added in #34
If any issues arise, open a new issue. Closing this one
Most helpful comment
This will be the API. Working nicely now on iOS and Android, but will need to test a few more things before creating a PR: