Page

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

<Page> 是一个用于包装内容并可选择显示的UI组件 <ActionBar>


<Page>
  <ActionBar title="My App" />
  <GridLayout>
    <Label text="My Content"/>
  </GridLayout>
</Page>

道具

名称类型描述
actionBarHiddenBoolean显示或隐藏ActionBar。
默认值: false
backgroundSpanUnderStatusBarBoolean获取或设置页面背景是否跨越状态栏。
默认值: false
androidStatusBarBackgroundColor获取或设置android上状态栏的颜色。
enableSwipeBackNavigationBoolean获取或设置是否可以在ios上刷回页面。
默认值: true
statusBarStyleString获取或设置状态栏的样式。
有效值:
"light",
"dark"

活动

名称描述
navigatedFrom导航父框架时发出。
navigatedTo父框架导航到此页面时发出。
navigatingFrom父框架导航离开此页面时发出。
navigatingTo父框架导航到此页面时发出。

原生组件

AndroidiOS
org.nativescript.widgets.GridLayoutUIViewController
Contributors