Hello,
I'd like to thank you in advance for your assistance. It is greatly appreciated.
I have a SharePoint list where one of the columns is "Attachments".
In the Home Screen of the app I have a Galley with this SharePoint list as its data source.
The Image control inside this gallery has the following code: First(ThisItem.Attachments).Value.
I am doing it this way so in case there are multiple images, it just displays the first attachment image.
The OnSelect code for the Place a Bid button is: Set(varItem, ThisItem); Navigate('Bid Screen') - this creates the varItem variable and places the selected item's information inside it, and then directs the user to the Bid Screen.

In the Bid Screen I'd like to display the information from varItem in a gallery and it actually works, besides the picture(s). The Items code of the Bid Screen's Gallery is varItem. When using this code it does bring in the text from varItem. The problem I have is when trying to bring in the images into the Image controls inside the gallery. I even tried to bring in just one image, the same way i did in the Home Screen's Gallery. It doesn't work as the code First(ThisItem.Attachments).Value no longer works in the Bid Screen's Gallery. Instead of "Attachments" I only have the option "Has Attachments" (see screenshots). I also tried using a nested Gallery inside of this gallery but ran into the same problem.


I am new to all of this, and i can't seem to figure this out.
How can I display all of the attachments of an item in my SharePoint list inside of the Gallery?
Thank you so very much for your assistance.