Files
NativeScript/tests/app/ui/button/button.md
2016-06-20 14:32:12 +03:00

33 lines
749 B
Markdown

---
nav-title: "button How-To"
title: "button"
environment: nativescript
description: "Examples for using button"
previous_url: /ApiReference/ui/button/HOW-TO
---
# Button
### Declaring button module
Button module is required to use any button feature.
<snippet id='button-require'/>
Other frequently used modules when working with buttons include:
<snippet id='button-require-others'/>
### Attaching event handler for the button tap event.
``` XML
<Page>
<Button tap="buttonTap" />
</Page>
```
### Creating a button
<snippet id='button-create'/>
### Setting the text of a button
<snippet id='button-settext'/>
### Responding to the tap event
<snippet id='button-tap'/>
### Binding text property directly to model
<snippet id='button-bind'/>