Our application has about 30 page. Does it make sense create all view page without data when application launch? Or better create page when it necessary. What about performance, responsiveness of the interface on mobile device?
Yes, it looks crazy create 30 page with full content, but we can create not whole page, but create only base structure of page(container for page content). When page displaying, then fill it content. Maybe it will do transitions between page more smoothly
Our application has about 30 page. Does it make sense create all view page
Share
No, don’t do it!
You should actually try to minimize the DOM the mobile (especially) browser has to handle, and filling the DOM with 30-pages will most likely be a nightmare for it to handle (depending on complexity of each page of course).
I’m not really sure what you mean by this sentance:
Could you elaborate?