Hello appinventor community! First time posting here, so be kind with me.
I'm making mock apps with appinventor2 just to learn and I've come to a dead end.
I'm having a one Screen app I'm working on, where there is a TableArrangement with 6 clickable images as buttons, named "btn_Menu". I'm testing my code on Ai Companion and through USB, with two differnt Android devices running 4.2, & 5.0 and I'm getting differences in app loading times. Therefore I need to implement a loading screen through the use of "visible/invisible" VerticalArrangement, with a rotating "loading_Icon" image.
What I've done sofar is, check in an "if...then...else" block, the "btn_Menu.Visible", adding a clock.Timer enabled to 5000ms in "then" adding a "set loading_Icon.Visible = true" and "set loading_Icon.RotationAngle to loading_Icon.RotationAngle+200".
The problem is, that either the clock does not fire, or there is no code checking done in "if".
Is my thinking right, on checking the visibility of the TableArrangement to know if it has loaded, and then loading the "loading_Icon", only at timer, or there is another way to check if an arrangement of buttons has loaded in an app?
Any suggestions, preferably with a block sample, is very mutch welcomed.