Category: Xamarin Forms Project Tutorial
This posts are the collection of xamarin forms tutorial
Making Dynamic Phone Call Native Way Xamarin Forms with Json Respose
Hey Guys in this tutorial we will be Make a Label clicked Call i.e our about us page inside xamarin forms : You Have to Add Xam.Plugins.Messaging Plugin on Every Project 😀 Your App.xaml.cs will look like this : Create Views Folder and then we are going to create a ContentPage name it as AboutUsPage
Making Phone Call inside Web View Xamarin Forms
Hello guys there are so many Post telling about creating webview phone call in xamarin forms. I am going to show the easiest way. No need of Hybrid web View : So inside our MainPage.xaml Inside our Code Behind of MainPage.xaml.cs : Use Nuget Package from Here : https://www.nuget.org/packages/Xam.Plugins.Messaging/5.2.0 Post Views: 1,266
Xamarin Forms Tree View Dynamic Using Sync Fusion
Note : SyncFusion is Free for individual developers. At first we are going to SyncFusion Community for getting community License : 1. Claim your license(https://www.syncfusion.com/products/communitylicense) 2. Sign in with your linked in Account or Xing 3. That’s all get license key from here (Adding Xamarin Forms Platform, Select Any Version and Get License) 4. Now
Xamarin Forms Consume Local Json File
Our MainPage.xaml will look Like this : Our MainPage.xaml.cs will look like this : Inside Models Folder i have added person Class : Now create a new Json file and add this : Note Select that file go to properties and Make that file built option to embedded resources that’s all : Post Views: 1,819
Xamarin Forms Parsing Json Using Web API
//This app is not complete but for reference shake i am adding it. We will be working on many Json Parsing and using it on Xamarin Forms Projects in upcomping tutorial’s. MainPage.xaml MainPage.xamlcs And Inside our model folder we will have content of model class like this : Output: Post Views: 1,832
Xamarin Forms picker with entry data uploading it to azure database #18
Through out my tutorial we have been talking about Model View ViewModel : In this tutorial too we will be talking about MVVM approach so the basic idea is to upload the content of the entry to the azure data base. Step1: Inisde App.xaml.cs Step 2: Views Folder : OrderPage.xaml OrderPage.xaml.cs Step 3: ViewModel Folder
Date Picker and Scheduling Events with in a Month # 17
Date Picker and Scheduling Events with in a Month # 17 Our App.xaml.cs : Our MainPage.xaml : Our mainPage.xaml.cs Output : Post Views: 1,192
Question and Answer API in Asp.net core Web Api[Sampurna] #4
This is a simple api where we are going to display list of answers with respect to the given question : Step1: Models Folder Answer.cs: Question.cs ExamContext.cs Step2: Startup.cs Step-3: Inside Packetmanager console Add-migration initial Update-database Step4: Now it’s time to create api controllers: QuestionController.cs AnswerController.cs Step5: Fill the table with data at first then
Adding Swagger in Asp.net core App [Sampurna #1]
Configure Swagger in ASP.net Core Web Project App using Swashbuckle.AspNetCore Step1: Install package Swashbuckle.AspNetCore Step2: Configure Swagger middleware : Startup.cs : public void ConfigureServices(IServiceCollection services) { services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1); services.AddSwaggerGen(c => { c.SwaggerDoc(“v1.0”, new Info { Title = “My Demo API”, Version = “1.0” }); }); } Inside configure method inside Startup.cs : public void Configure(IApplicationBuilder app,
Xamarin Forms Reading Data From Json to Picker and Entry
MainPage.xaml MainPage.xaml.cs Then Create a data folder and create a json File : and copy the content from the repo that i have mentioned inside the MainPage.xaml.cs. And Don’t forget to make that json File as embedded resources. Post Views: 1,142