Piman
(Mossy Michael)
May 27, 2020, 5:46pm
#2
Check if there’s any errors in your blocks, if not, try to refresh your browser,
Taifun
May 27, 2020, 6:22pm
#3
Cant copy screen
the question is, why are you copying screens? this is considered bad programming practice…
DRY - Don’t repeat yourself…
Don't repeat yourself (DRY, or sometimes do not repeat yourself) is a principle of software development aimed at reducing repetition of software patterns, replacing it with abstractions or using data normalization to avoid redundancy.
The DRY principle is stated as "Every piece of knowledge must have a single, unambiguous, authoritative representation within a system". The principle has been formulated by Andy Hunt and Dave Thomas in their book The Pragmatic Programmer. They apply it quite broad...
you should separate data and logic and with for example only one screen together with the logic you can handle as much data as you want… no need to copy screens…
see also tip 1 here
Use different screens wisely
Before starting to create another screen, first you should think about is it really necessary? See also Building apps with many screens and SteveJG’s post about advantages/disadvantages , because in only one screen you also can use vertical arrangements to simulate different screens, just set the arrangements to visible = true/false as needed…
If you decided to use different screens, then you should switch them correctly, else you will run out of memory after a wh…
Taifun
3 Likes
This post was flagged by the community and is temporarily hidden.