mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
10 lines
381 B
XML
10 lines
381 B
XML
<Page loaded="pageLoaded">
|
|
<StackLayout>
|
|
<Label text="Handlers as exports" tap="tapAction" doubleTap="doubleTapAction" />
|
|
<Label text="Bound handlers" tap="{{ tapAction }}" doubleTap="{{ doubleTapAction }}" />
|
|
<Label text="Result: "></Label>
|
|
<Label id="resultContainer"></Label>
|
|
<Button text="clean-result" tap="{{ cleanResult }}" />
|
|
</StackLayout>
|
|
</Page>
|