Vinicius Aquino
Vinicius Aquino

Reputation: 737

How to structure page folders in Ionic in the best way?

I'm looking for a better way to organize the pages on Ionic, pages related to a subject, such as products, what do we have in products? Edit, register, list, details, what would the structure look like?

 product-edit
 product-list
 product-details
 product-add

Or maybe this way?

product
   edit
   add
   details
   list

I do not know if these are the best options, can you help me please?

Upvotes: 0

Views: 132

Answers (1)

EinfachHans
EinfachHans

Reputation: 255

I recommend the second one:

product
   edit
   add
   details
   list

This is absolutly fine. You have a better overview on which pages a important for products than in the first example.

Upvotes: 1

Related Questions