Hi all,
I am working on my first app development project, which happens to be on Xamarin Forms.
This is a little confusing to me but I will try my best to explain: I am creating an application that automates the data entry process when counting animals in a known habitat.
I have a login screen, where the user selects the count site they are counting at.
This takes them into a counter page, where the user points their phone at the animal and taps record. From this screen, I am obtaining GPS and Heading data to 1) pin point the location of the count, 2) find out which direction the phone was pointing towards.
This takes them to a variable selection page, where they estimate the distance of sighting and pick the gender of the animal.
Once the user progresses through one count iteration, they get redirected to the counter page to count the next animal.
My problem: I obtain site number from LoginPage, GPS location from CounterPage and gender + distance from VariableSelectionPage.
When the user finishes their count, I want to show them a list containing all of this info for each count instance.
I am having trouble consolidating all of my data into one instance. Any suggestions?