mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Resolved Issue #473: Add support for Notification Observers (iOS) and Broadcast Receivers (Android)
9 lines
665 B
XML
9 lines
665 B
XML
<Page xmlns="http://www.nativescript.org/tns.xsd" loaded="onPageLoaded">
|
|
<StackLayout id="stackLayout">
|
|
<Button text="Get Connection Type" tap="onGetConnectionType" style.fontSize="30" horizontalAlignment="stretch" textAlignment="center"/>
|
|
<Button text="Start Monitoring" tap="onStartMonitoring" style.fontSize="30" horizontalAlignment="stretch" textAlignment="center"/>
|
|
<Button text="Stop Monitoring" tap="onStopMonitoring" style.fontSize="30" horizontalAlignment="stretch" textAlignment="center"/>
|
|
<Label id="infoLabel" style.fontSize="30" horizontalAlignment="stretch" textAlignment="center" width="200" height="200"/>
|
|
</StackLayout>
|
|
</Page>
|