Hi @vish_p,
Do you want to create a Pre-loader screen within your app?
Do you want to set the loading screen on the basis of the time it takes PowerApps to fetch details from SPList?
I have made a test on my side, please take a try with the following workaround:
Set the OnVisible property of the Display form to following:
Set(loading1, true);
Set(
FetchedItems,
LookUp('PO list', customid = BrowserGallery1.Selected.ID_x0020_to_x0020_which_x0020_PO).'{Attachments}'
);
Set(loading1, false)
Set the Items property of the specific column in your Display form to following:
FetchedItems
More details about creating a pre-loader screen in PowerApps, please check the following blog:
https://powerapps.microsoft.com/en-us/blog/ux-patterns/
Note: If your LookUp formula executed fastly, you may not see the Pre-loader screen clearly (may be just a flash).
Best regards,
Kris