mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
18 lines
526 B
XML
18 lines
526 B
XML
<Page loaded="pageLoaded">
|
|
<Page.actionBar>
|
|
<ActionBar title="Title">
|
|
<ActionBar.titleView>
|
|
<SegmentedBar selectedIndex="{{ index }}">
|
|
<SegmentedBar.items>
|
|
<SegmentedBarItem title="Item 1" />
|
|
<SegmentedBarItem title="Item 2" />
|
|
<SegmentedBarItem title="Item 3" />
|
|
</SegmentedBar.items>
|
|
</SegmentedBar>
|
|
</ActionBar.titleView>
|
|
</ActionBar>
|
|
</Page.actionBar>
|
|
<StackLayout>
|
|
<Button text="{{ index }}" />
|
|
</StackLayout>
|
|
</Page> |