Nativescript: Unable to align icon from right to left for android

Created on 20 Feb 2016  路  5Comments  路  Source: NativeScript/NativeScript

I can't align this "Back" icon for android , it keeps aligned to right, am I missing something?
Any help is appreciated, this is my code and what I get

<page.actionBar> <action-bar title="Trucking Schedule" android.iconVisibility="never"> <action-bar.actionItems> <action-item tap="goBack" android.systemIcon="ic_menu_back" android.position="left" /> <action-item tap="{{ anyCommand }}" ios.systemIcon="13" android.systemIcon="ic_menu_refresh" ios.position="right" /> </action-bar.actionItems> </action-bar> </page.actionBar>

capture

Most helpful comment

Buttons on the left are called NavigationButton.
Try this:

<Page.actionBar>
    <ActionBar title="Navigation Button">
      <NavigationButton text="ios back" android.systemIcon = "ic_menu_back" tap="navTap"/>
    </ActionBar>
  </Page.actionBar>

All 5 comments

Buttons on the left are called NavigationButton.
Try this:

<Page.actionBar>
    <ActionBar title="Navigation Button">
      <NavigationButton text="ios back" android.systemIcon = "ic_menu_back" tap="navTap"/>
    </ActionBar>
  </Page.actionBar>

@vjoao, but I also need the "refresh" icon at the right, that combination is my problem right now, I know is so simple question but I just don't know the correct combination of buttons I guess.

    <Page.actionBar>
         <ActionBar title="Native FAB" backgroundColor="#3F51B5" color="#fff">
             <NavigationButton text="ios back" android.systemIcon = "ic_menu_back" tap="navTap"/>
             <ActionBar.actionItems>
                <ActionItem ios.systemIcon="12" android.systemIcon = "ic_menu_search" />
                <ActionItem ios.systemIcon="15" android.systemIcon = "ic_menu_camera" />
                <ActionItem ios.systemIcon="16" android.systemIcon = "ic_menu_delete" />
            </ActionBar.actionItems>
         </ActionBar>
    </Page.actionBar>

Thank you!

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

Pourya8366 picture Pourya8366  路  3Comments

Leo-lay picture Leo-lay  路  3Comments

rLoka picture rLoka  路  3Comments

vtisnado picture vtisnado  路  3Comments

rogangriffin picture rogangriffin  路  3Comments