Are there any readily available UI templates that I can use for {N}+ Angular mobile app asides the nativescript-ui?
Asked
Active
Viewed 905 times
-1
-
By template do u mean sample apps available ? – Dlucidone Mar 07 '17 at 07:07
-
Check this out https://www.nativescriptthemebuilder.com/ – Yaakov David Jan 19 '21 at 21:03
1 Answers
0
You can create basic angular application using
tns create myApp --ng
or
tns create myApp --template ng
Both options will take this template and will create basic Angular structure (master-detail like)
That said, you can now create your own template following the structure of the one above and re-use it for creating new projects with
tns create myApp --template <path-to-template>
Where the path can be local path, GitHub repository path or path to packed tgz.

Nick Iliev
- 9,610
- 3
- 35
- 89