I have a gallery which, on select, ClearCollects the item.
If(
ThisItem.completed;
Notify("Item already done!");
NewForm(Form2);;
ClearCollect(colSelectedItem;ThisItem);;
)
I have one container on the same screen that has this in the OnVisible property. The container has a Form (Form2) with about 25 Fields.
If(IsBlank(First(colSelectedItem));false;true)
I have Samsung Tablets where I run the App.
The problem is: when I first open the app and select an item in the gallery, the loading time is very very slow (around 5 seconds from clicking until the form is shown).
When I do the same procedure again after the form container has been loaded once, then it's not slow anymore but works and loads directly.
Does anyone know what the issue could be?