mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
20 lines
712 B
XML
20 lines
712 B
XML
<Page xmlns="http://schemas.nativescript.org/tns.xsd" navigatingTo="navigatingTo" class="page">
|
|
<Page.actionBar>
|
|
<ActionBar title="CSS Playground" class="action-bar">
|
|
</ActionBar>
|
|
</Page.actionBar>
|
|
|
|
<GridLayout rows="*, *">
|
|
<ContentView>
|
|
<Label id="play" text="I'm a test label." verticalAlignment="center"/>
|
|
</ContentView>
|
|
|
|
<GridLayout row="1" rows="*, auto, auto" borderTopWidth="1">
|
|
<TextView text="{{ currentCSS }}" textChange="{{ onTextChange }}"/>
|
|
|
|
<Button class="btn btn-primary" text="Apply" row="1" tap="{{ applyCSS }}"/>
|
|
<Button class="btn btn-primary btn-orange" text="Reset" row="2" tap="{{ resetCSS }}"/>
|
|
</GridLayout>
|
|
</GridLayout>
|
|
</Page>
|