Call rest api and show data to view in xamarin mrabd423 November 2, 2018 xamarin No Comments First conver the end json result your will get in to c# method. Like : Go to the http://json2csharp.com/ and paste it , you will then get the method … Read More...
How to make a form and get values in c# method – xamarin mrabd423 November 1, 2018 xamarin No Comments Create a method in your MainPage.xaml.cs private void submit_Clicked(object sender, EventArgs e) { var f_name = First_Name.Text; var l_name = Last_Name.Text; var email = Email.Text; } And make the form … Read More...