mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
52 lines
2.6 KiB
XML
52 lines
2.6 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<Page>
|
|
<ScrollView>
|
|
<StackLayout>
|
|
<Label class="title" text="Layouts" />
|
|
<StackLayout>
|
|
<Button tag="layouts/stack-layout" text="StackLayout" tap="itemTap" />
|
|
<Button tag="layouts/grid-layout" text="GridLayout" tap="itemTap" />
|
|
<Button tag="layouts/wrap-layout" text="WrapLayout" tap="itemTap" />
|
|
<Button tag="layouts/dock-layout" text="DockLayout" tap="itemTap" />
|
|
<Button tag="layouts/absolute-layout" text="AbsoluteLayout" tap="itemTap" />
|
|
</StackLayout>
|
|
|
|
<Label class="title" text="Content" />
|
|
<StackLayout>
|
|
<Button tag="content/tab-view" text="TabView" tap="itemTap" />
|
|
<Button tag="content/web-view" text="WebView" tap="itemTap" />
|
|
<Button tag="content/html-view" text="HtmlView" tap="itemTap" />
|
|
<Button tag="content/scroll-view" text="ScrollView" tap="itemTap" />
|
|
<Button tag="content/border" text="Border" tap="itemTap" />
|
|
</StackLayout>
|
|
|
|
<Label class="title" text="Views" />
|
|
<StackLayout>
|
|
<Button tag="views/button" text="Button" tap="itemTap" />
|
|
<Button tag="views/label" text="Label" tap="itemTap" />
|
|
<Button tag="views/text-field" text="TextField" tap="itemTap" />
|
|
<Button tag="views/text-view" text="TextView" tap="itemTap" />
|
|
<Button tag="views/switch" text="Switch" tap="itemTap" />
|
|
<Button tag="views/slider" text="Slider" tap="itemTap" />
|
|
<Button tag="views/progress" text="Progress" tap="itemTap" />
|
|
<Button tag="views/activity-indicator" text="ActivityIndicator" tap="itemTap" />
|
|
<Button tag="views/image" text="Image" tap="itemTap" />
|
|
<Button tag="views/search-bar" text="SearchBar" tap="itemTap" />
|
|
<Button tag="views/list-view" text="ListView" tap="itemTap" />
|
|
<Button tag="views/repeater" text="Repeater" tap="itemTap" />
|
|
<Button tag="views/dialogs" text="Dialogs" tap="itemTap" />
|
|
<Button tag="views/date-picker" text="DatePicker" tap="itemTap" />
|
|
<Button tag="views/time-picker" text="TimePicker" tap="itemTap" />
|
|
<Button tag="views/list-picker" text="ListPicker" tap="itemTap" />
|
|
<Button tag="views/segmented-bar" text="SegmentedBar" tap="itemTap" />
|
|
</StackLayout>
|
|
|
|
<Label class="title" text="Animations" />
|
|
<StackLayout>
|
|
<Button tag="animations/js-configurable" text="js-configurable" tap="itemTap" />
|
|
<Button tag="animations/js-opacity" text="js-opacity" tap="itemTap" />
|
|
<Button tag="animations/css-keyframes" text="css-keyframes" tap="itemTap" />
|
|
</StackLayout>
|
|
</StackLayout>
|
|
</ScrollView>
|
|
</Page> |