Category: Xamarin Forms Project Tutorial
This posts are the collection of xamarin forms tutorial
Collection View Pinterest and SnapChart UI Xamarin Forms
This post is under construction 🙂 MainPage.xaml MainPage.xaml.cs MarginConverter.cs MyViewModel.cs Create a model folder and create a new class: MyModel.cs Post Views: 1,356
Xamarin forms Bindable Layout Examlple
In order to create a Bindable layout you should have Xamarin Forms Version 3.5 and Above. (If not please install from Nuget package) We will use MVVM Approach as usual : Inside Models Folder Create a class Named : Person.cs Inside ViewModels Folder create a Class Named as PersonViewModel.cs Inside MainPage.Xaml Inside MainPage.Xaml.cs Output :
SQL Joing two tables Xamarin forms
MainPage.xaml MainPage.xaml.cs MyTable.cs Post Views: 1,418
SQL Joining one table Xamarin forms
Make Sure you have installed Sqlite.net.PCl nuget on all the Project that’s all. MainPage.xaml MainPage.xaml.cs TestTable.cs Post Views: 804
Xamarin forms List view Commanding
HomePage.xaml Homepage.xaml.cs HomePageViewModel.cs Let’s create 2 folder Behaviors and Converters Inside Behaviors folder : BehaviorBase.cs EventToCommandBehavior.cs Inisde Converters Folder : SelectedItemEventArgsToSelectedItemConverter.cs Post Views: 1,312
Simple XML Parser for Xamarin Forms #Tutorial 21
You asked i implemented. 🙂 Hey guys this is a very simple example of paring XML . Inside Models folder we will create MyModel.cs Create a new Folder as MyResources and Place a new XML File Name it as MYXmlFile.xml(Don’t forget make it as embedded Resources) Now at last inside our MainPage.xaml Now at last
Clubbing System.IO storage and SQLite Storage to get Time Stamping Upload and Download Feature Xamarin Forms #Tutorial 21
Hey Guy’s i have been asked with so many SQL and System.IO Question’s in Xamarin forms. 1) How do i store image, video , pdf’s or any stuffs in Both android and IOS.? 2) How do i retrieve back all the items in the form of list. 3) Whether to use Android and IOS Platform
Image Slider from Json Response Tutorial 20
Required Plugins : https://www.nuget.org/packages/CardsView https://www.nuget.org/packages/Xamarin.FFImageLoading.Forms/ https://www.nuget.org/packages/Newtonsoft.Json/ 1. Don’t forget to add nuget package on all projects i.e shared project , android, ios Platform Specific : IOS project AppDelegate.cs : AndroidProject MainActivity.cs 2. MainPage.xaml MainPage.xaml.cs 3. Create a Model Folder and create a new class MyMainModel.cs 4. Create a viewmodel class :(MainPageViewModel.cs) 5. At last you
Beautiful List View Xamarin Forms
This is a beautiful List in Xamarin Forms excluding the lower list bar from Right. For Binding check my previous Video tutorial to do. Iconize is the font awesome icon implementation. Output : Post Views: 927
Remove List View Item Selection Pale Yellow Color
Inside a Share Project we should create a class Let’s call it as : CustomViewCell.cs Now inside List View We should Call our CustomViewCell Like this : Now We should call the namespace like this : Now it’s time for custom Renderer. For Android CustomViewCellRenderer.cs For IOS : Post Views: 1,548