
[英]How to open a xcode framework file in telerik hybrid coredova application using telerik appbuilder
[英]Telerik AppBuilder : How can we create tab based application using NativeScript
您可以使用TabView
组件。 您还可以查看 NativeScript 文档中的文章。 我还附上了示例示例。
<TabView selectedIndex="0">
<TabView.items>
<TabViewItem title="Tab 1">
<TabViewItem.view>
<Label text="Label in Tab1" />
</TabViewItem.view>
</TabViewItem>
<TabViewItem title="Tab 2">
<TabViewItem.view>
<Label text="Label in Tab2" />
</TabViewItem.view>
</TabViewItem>
<TabViewItem title="Tab 3">
<TabViewItem.view>
<Label text="Label in Tab3" />
</TabViewItem.view>
</TabViewItem>
</TabView.items>
</TabView>
如需进一步帮助,您可以在此处查看示例示例。 如果您想创建 NativeScript Angular2 项目,您将在此处找到合适的示例。
<TabView selectedIndex="0">
<TabView.items>
<TabViewItem title="Tab 1">
<TabViewItem.view>
<Label text="Label in Tab1" />
</TabViewItem.view>
</TabViewItem>
<TabViewItem title="Tab 2">
<TabViewItem.view>
<Label text="Label in Tab2" />
</TabViewItem.view>
</TabViewItem>
<TabViewItem title="Tab 3">
<TabViewItem.view>
<Label text="Label in Tab3" />
</TabViewItem.view>
</TabViewItem>
</TabView.items>
</TabView>
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.