L'app da errori

Dopo la creazione di 10 schermi, come dice nelle avvertenze la piattaforma l'applicazione potrebbe bloccarsi.
Io ho creato un'applicazione che momentaneamente ha 46 schermi.
c'è un modo per impedire all'app di bloccarsi dato che è una cosa che sucecde frequentemente.
Grazie

Use arrangements, instead of screens & also it will make your app slow if you have many screens.

you can't add more than 10 screens. The app freezes after it. Delete screens until you have oly 10 screens then use visible property for components and show or hide the components you want to show.

1 Like

You were rightly advised when you added 10 screens.

1 Like

if you want the open/close screen animations, you can really switch screens but changing the content of that opened screen.

Suggestion

Screen1: the principal screen.
Screen2: represents all the screens that may be opened directly from Screen1
Screen3: Represents all the screens that may be opened via Screen2
Screen4: Represents every screen that you open through Screen3
etc.

HOWTO: Yet Another Tabbed Screens Demo

Does your application do 46 different things with different purposes, or is just doing the same old thing with 46 different pieces of data (text or pictures)?

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.