Random page flow
I am building a quiz app and would like each page to be randomised, is there any way of doing this?
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
I am building a quiz app and would like each page to be randomised, is there any way of doing this?
Hi Sam,
The more pages in your application, the larger the project, which means the application takes up more memory for both storage and operational during the work. The only solution is to have a screen to display the quiz tasks and to store tasks as resources. For example you can store them as JS-objects.
Here's a solution for individual pages.
http://stackoverflow.com/questions/62... here you will find the shuffle function that shuffles the array of the screens names. Then you're just in a standard way in turn to choose the screens names from a shuffled array.