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コンポーネントです。NativeScriptのアプリは普通<ActionBar>や他のUIウィジェットなどの内容をラップした一つ以上の<Page>コンポーネントを持ちます。


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

Props

名前説明
actionBarHiddenBooleanページに<ActionBar>を表示するか否かを設定します。
デフォルトの値: false.
backgroundSpanUnderStatusBarBooleanページの背景がステータスバーの下まで跨るかを取得・設定します。
デフォルトの値: false.
androidStatusBarBackgroundColor(Androidのみ)Androidデバイスでのステータスバーの色を取得・設定します。
enableSwipeBackNavigationBoolean(iOSのみ) iOSデバイスにてページがスワイプで戻ることができるか取得・設定します。
デフォルトの値: true.
statusBarStyleStringステータスバーのスタイルを取得・設定します。
有効な値:
light,
dark.

Events

名前説明
navigatedFromアプリが現在のページから他のページへ遷移した際に発火します。
navigatedToアプリが現在のページに遷移した際に発火します。
navigatingFromアプリが現在のページから他のページへ遷移する前に発火します。
navigatingToアプリが現在のページに遷移する前に発火します。

Native component

AndroidiOS
org.nativescript.widgets.GridLayoutUIViewController
Contributors