I am making a sales order app with Xamarin , but I have a problem, call a search page, and return the selected value to the page I was on. I'll explain better below.
Screen 1:
- Order registration screen, in this screen, the operator enters the client code, or click on a "little mirror" to open the client list screen, I am using Navigation.PushAsync (search screen); to call the list screen:
Screen2:
- Clientlistscreen,thisscreendisplaystheregisteredclients,andwhenselectingaclient,andpressingOK,wouldhavetoreturnto"Screen 1", but it is not returning. I'm using Navigation.PopAsync ();
Can someone tell me how to do this? Basically, it is to open a search screen, select the client, and return to the current screen.
Att. Felipe