Project with many screens makes slow thunkable

If you are displaying text or images on each screen, you would use a placeholder component.

For example, let’s say you have a different image on each screen. Instead of making 1,000 screens, you make one screen and you name the images image1.jpg, image2.jpg, image3.jpg, etc. You create a variable called PageNum and set it to 1.

Then you assign the image component’s picture a value joining “image” with PageNum and with “.jpg”. When the user clicks the next page button, you increase PageNum by one and re-load the image component. There is no need to have more than one screen.

1 Like