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>
名前 | 型 | 説明 |
---|---|---|
actionBarHidden | Boolean | ページに<ActionBar> を表示するか否かを設定します。デフォルトの値: false . |
backgroundSpanUnderStatusBar | Boolean | ページの背景がステータスバーの下まで跨るかを取得・設定します。 デフォルトの値: false . |
androidStatusBarBackground | Color | (Androidのみ)Androidデバイスでのステータスバーの色を取得・設定します。 |
enableSwipeBackNavigation | Boolean | (iOSのみ) iOSデバイスにてページがスワイプで戻ることができるか取得・設定します。 デフォルトの値: true . |
statusBarStyle | String | ステータスバーのスタイルを取得・設定します。 有効な値: light ,dark . |
名前 | 説明 |
---|---|
navigatedFrom | アプリが現在のページから他のページへ遷移した際に発火します。 |
navigatedTo | アプリが現在のページに遷移した際に発火します。 |
navigatingFrom | アプリが現在のページから他のページへ遷移する前に発火します。 |
navigatingTo | アプリが現在のページに遷移する前に発火します。 |
Android | iOS |
---|---|
org.nativescript.widgets.GridLayout | UIViewController |