Re: Why doesn't this actually work? Be gentle I'm a noob
@colbyturybury
Yes, so my first question would be...why multiple Galleries?
But, be that as it may, the concept is the same. You just need to pass the record and use it in the Item property of the form. However, you are dealing with multiple forms on multiple screens, so you would need to pass the record to each screen.
The easier method is this. On your OnSelect in the Gallery, set a global snapshot variable.
Set(glbSelectedItem, ThisItem);
Navigate(DetailScreen, ScreenTransition.None)
Now, set the Item properties of the forms to glbSelectedItem
You do not need to pass the item in the Navigate any longer.