Hi,
I recently created my first app on Ionic. It was okay for an mvp but I’m trying to rewrite it to make it more polished so I can deploy it onto the app/play store. I wrote the backend api for the app in rails.
The app is for posting / finding jobs.
Here are some of the questions that I have:
-
I have made it so that it calls the api at every view. For example, for the job list view, it gets call the job api. And then when I click into each job, it calls the job/:id api. Is this the right way to go about it because I have noticed a very bad user experience when the network is slow and on slower model phones. Should I be retrieving all the data in the beginning so the page transitions will smoother?
-
Is the best way to implement the side menu the way the starter app implements it? Using a nested abstract view? I currently have some nested views I use for registration forms / job posting forms. Should I be doing few layer deep nested views or what are my alternatives?
-
There is a blank black screen after the splash screen when the app is loading on some older phones. How do I control that?
I have a lot more questions but if you can answers these first, I would really really appreciate it. Thank you so much in advance.