@bhandarkaracademy ,
We’re exploring a variety of options and updates around this at the moment. We have also shipped a number of smaller updates which have resulted in improvements.
I’d also encourage you to peruse the #thunkable-tutorials particularly around reducing screen count and refactoring your blocks.
Originally published Oct 2019
Revised & Updated Feb 2022
One pitfall that often catches out new Thunkers is creating more screens in their projects than they need to. Two classic examples of this are the Dictionary app and the Quiz app. As a new user, it’s easy to think that if you need 1 screen for 1 question then you need 50 screens for 50 questions. The knock on effect of this approach is that any future updates become more time consuming. This is especially true of UI changes since you wil…
Background
New thunkers often ask how to duplicate screens or how to copy blocks to another screen. It is often the case that you do not need to do this, and you should instead reuse what you have already created.
I have identified two scenarios where this concept of reusability can help your app use less code and be more dynamic.
Scenarios
Scenario 1 - You want to display the same type of content at different times.
The steps to do this dynamically are as follows:
Create the content contain…
2 Likes