1
votes

Are there any readily available UI templates that I can use for {N}+ Angular mobile app asides the nativescript-ui?

1
By template do u mean sample apps available ?Dlucidone

1 Answers

0
votes

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.