-1

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

Valkyrie
  • 189
  • 1
  • 1
  • 15

1 Answers1

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