Nativescript-vue: Implement ActionBar component

Created on 23 Apr 2017  路  6Comments  路  Source: nativescript-vue/nativescript-vue

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!

enhancement help wanted

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:

<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>

All 6 comments

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:

simulator screen shot 1 aug 2017 09 56 40
simulator screen shot 1 aug 2017 09 58 14
screenshot_20170801-100710

This has been added in #34

If any issues arise, open a new issue. Closing this one

Was this page helpful?
0 / 5 - 0 ratings

Related issues

packytagliaferro picture packytagliaferro  路  5Comments

mpaccione picture mpaccione  路  3Comments

kjlaw89 picture kjlaw89  路  3Comments

Fabiyo-90 picture Fabiyo-90  路  6Comments

academici picture academici  路  5Comments