mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-24 10:17:49 +08:00
7 lines
245 B
XML
7 lines
245 B
XML
<Page loaded="pageLoaded">
|
|
<StackLayout>
|
|
<Label text="Handlers as exports" tap="tapAction" doubleTap="doubleTapAction" />
|
|
<Label text="Bound handlers" tap="{{ tapAction }}" doubleTap="{{ doubleTapAction }}" />
|
|
</StackLayout>
|
|
</Page>
|