Hello I am trying to create a function that will allow users of my app to make a photo, preview it and save.
I used a tutorial and made it like that:
I inserted camera control with function:
If(varZrobione=false,ClearCollect(CameraImage,Camera1.Photo); UpdateContext({PhotoDateTime: Now()});Patch(Obrazy_obecnosc, Defaults(Obrazy_obecnosc), {Title: TextInput2.Text, 'Informacje o obrazie': First(CameraImage).Url});Set(varZrobione,true))
I also use input text control (default parameter):
"Zdjecie wykonano prawidlowo " & PhotoDateTime
and image control that shows photo that was made:
LookUp(Obrazy_obecnosc,Title= TextInput2.Text, 'Informacje o obrazie')
This seems to be working. It is saving data to Sharepoint list, but how can I retrieve this on a different screen in a different scenario. This tutorial is using input text to preview the image, but this input text is dynamic (every user has it individually).
My sharepoint list got only one field - Informacja o obrazie multiline text field.
It looks like this:

Should I maybe create ID field or use default field?
How would you guys recover this item in gallery.
I want to mix this photo with different sharepoint list data showing fields: Name, Date of submission, Details, GPS Data.
Or maybe I should include all data in one sharepoint list and patch it after everything is filled?