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" />

道具

名称类型描述
textString设置按钮的标签。
textWrapBoolean获取或设置窗口小部件是否包装标签的文本。适用于较长的标签。默认值是 false

活动

名称描述
tap点击按钮时发出。

原生组件

AndroidiOS
android.widget.ButtonUIButton
Contributors