Files
NativeScript/apps/ui/app/events/handlers-page.xml
Nathan Walker 1e6fccf272 chore: cleanup
2020-07-23 14:03:37 -07:00

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>