1
I’m making a sales order app with Xamarin, but I am with a problem, in flame ruma page search, and return the selected value to the page I was. I will explain further below.
Screen 1:
- Order registration screen, on this screen, the operator type the client code, or click on a "magnifying glass" to open the customer listing screen, I’m using Navigation.Pushasync(telaPesquisa); to call the listing screen:
Screen 2:
- Customer listing screen, this screen displays registered customers, and when selecting a customer, and press OK, would have to return to "Screen 1", but is not returning. I am using Navigation.Popasync();
Could someone tell me how to do that? Basically, it’s open a search screen, select the client, and return to the current screen.
Att. Felipe
It would be good to put the code referring to
Navigation.PushAsync(telaPesquisa)
– rubStackOverflow
That’s all I had in the code, so I didn’t. I was able to adjust here, it was my own mistake, the button event was "binded" twice, in the C# code and in the XAML code. That’s why Popasync didn’t work, it was going back 2 pages. Now it’s right. Thanks for the help @rubStackOverflow.
– felipedrt