NavigationButton

This is an overview of the most common usage of NavigationButton. For more information about the available properties, methods, or events, head over to the complete API documentation for NavigationButton.

NavigationButton组件是Android导航按钮和iOS后退按钮的NativeScript抽象。


<ActionBar title="My App">
  <NavigationButton text="Go back" android.systemIcon="ic_menu_back" @tap="goBack" />
</ActionBar>

道具

名称类型描述
textString设置要在iOS上显示的文本。
android.systemIconStringAndroid上显示的图标。

Android的图标列表可以在 https://developer.android.com/reference/android/R.drawable.html找到,图标是以 ic_ 前缀开头的图标。

活动

名称描述
tap轻触NavigationButton时发出。
Contributors