mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-26 03:01:51 +08:00
17 lines
723 B
XML
17 lines
723 B
XML
<Page backgroundColor="skyblue">
|
|
<StackLayout row="1" verticalAlignment="top" backgroundColor="gold">
|
|
<Label backgroundColor="darkblue" originY="0"
|
|
tap="tapLabel"
|
|
height="64" fontSize="32" color="skyblue" textAlignment="center"
|
|
text="Click here"/>
|
|
<Label backgroundColor="darkgreen" originY="0"
|
|
tap="tapLabel"
|
|
height="64" fontSize="32" color="lime" textAlignment="center"
|
|
text="Or here"/>
|
|
<Label backgroundColor="darkred" originY="0"
|
|
tap="tapLabel"
|
|
height="64" fontSize="32" color="pink" textAlignment="center"
|
|
text="But NOT here"/>
|
|
</StackLayout>
|
|
</Page>
|