Button

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

<Button>はユーザーの動きを反映するボタンを表示するためのUIコンポーネントです。

使用できる動きについてはGestures in the official NativeScript documentationを見てください。


<Button text="Button" @tap="onButtonTap" />

Props

名前説明
textStringボタンのラベルを取得・設定します。
textWrapBooleanウィジェトがラベルのテキストを覆うかどうかについて取得・設定します。the text of the label. ラベルが長いときに有用です。デフォルトの値はfalseです。

Events

名前説明
tapボタンがタップされたときに通達されます。

Native component

AndroidiOS
android.widget.ButtonUIButton
Contributors