Block suggestion

Please add a "Refresh screen" block which would refresh the current screen displayed. This would be useful for creating game loops and animations for apps

1 Like

This is what the Clock component is for. Blocks run on the UI thread, and so while your blocks are running the Android runtime cannot redraw the screen. A "Refresh screen" block to redraw would make no sense since the block is still occupying the thread that does the redraw and it cannot yield for an update until the blocks finish executing.

Please check this also,

and