【发布时间】:2017-03-06 21:53:13
【问题描述】:
除了 nativescript-ui 之外,是否有任何现成的 UI 模板可以用于 {N}+ Angular 移动应用?
【问题讨论】:
-
模板是指可用的示例应用程序吗?
标签: nativescript angular2-nativescript nativescript-telerik-ui
除了 nativescript-ui 之外,是否有任何现成的 UI 模板可以用于 {N}+ Angular 移动应用?
【问题讨论】:
标签: nativescript angular2-nativescript nativescript-telerik-ui
您可以使用创建基本的 Angular 应用程序
tns create myApp --ng
或
tns create myApp --template ng
这两个选项都将采用 this template 并将创建基本的 Angular 结构(类似主从结构)
也就是说,您现在可以在 the structure of the one above 之后创建自己的模板,并将其重新用于创建新项目
tns create myApp --template <path-to-template>
其中路径可以是本地路径、GitHub 仓库路径或打包后的 tgz 路径。
【讨论】: