In this new tutorial, we ‘ll see, how to get the list of Friends. Send a private message to friend and how to save it in database. If you read this article for the first time, i invite you to read before the previous tutorial available in this link. Eventually, you can download the code […]
Category: Xamarin Forms
Xamarin Forms – E-commerce Application – Add to cart button(part 3)
In this new tutorial of Xamarin Forms E-commerce application. We’ll see together how to add to cart (Basket) button in the navigation bar.If this is the first experience with Xamarin Forms, I invite you to check my first post Xamarin Forms – Prism. You can also see, the Part 1 and Part 2 of this tutorial. […]
Xamarin Forms – Live Chat – SignalR
In this new tutorial, we will see together how to develop a Xamarin Forms chat application using SignalR for real-time communication. What can you do with ASP.NET and SignalR? While chat is often used as an example, you can do a whole lot more. Any time a user refreshes a web page to see new […]
Xamarin Forms – E-commerce Application (part 2)
In this new tutorial series, we will see how to develop an E-commerce application, using Xamarin forms Prism template. In order to install Prism template, I invite you to check my first Xamarin Forms – Prism.The code is available on GitHub.You can also see the part one of this tutorial on this link. Add ProductDetailsPage […]
Xamarin Forms – CarouselView
In this article, we will see the Carousel View component. The carousel is a slideshow for cycling through a series of content, it works with a series of images, text, or custom datatemplate . It also includes support for indicators. Start by creating a new Xamarin Forms project. You will learn more by going through […]
Xamarin Forms – E-commerce Application (part 1)
In this new tutorial series, we will see how to develop an E-commerce application, using Xamarin forms Prism template. In order to install Prism template, I invite you to check my first Xamarin Forms – Prism.The code is available on GitHub. You can find more details in my video on my YouTube channel : Add […]
Xamarin Forms – Charts
In this article we’ll explore together how to integrate charts into Xamarin Forms Application. It has always been very important to display chats for a mobile user in order to provide users with a clear overview of digital data. In this tutorial, we’ll use Microcharts Nuget plugin. It is just simple drawing on top of […]
Xamarin Forms – Mastering Multilingual
Multilingual in a mobile application is essential to have a large audience around the world. For this, as many languages as we manage in the application as many users as we have. We’ll see together how much easier to manage many languages in Xamrin Forms application. You can download the code on GitHub repository. Using […]
Xamarin Forms – CollectionView
In this post we’ll go through an example of how to use CollectionView component with SwipeView.CollectionView is a view for presenting lists of data using different layout specifications. It aims to provide a more flexible, and performant alternative to ListView.You can get the code source on GitHub. Differences between CollectionView and ListView While the CollectionView […]
Xamarin Forms – ListView
In this new tutorial, we ‘ill explore together how to manipulate the component ListView.You can get the code source on GitHub. Data Binding First of all, let’s create a new Xamarin Forms Prism template application called ListView. You can find more detail in the previous post.After that, open the MainPage.xaml page and add new ListView […]
Xamarin Forms- Android Local Notification
Hello, every body in this new tutorial of Xamarin Forms. In this part, you will learn how to make a basic local notification. NotificationManager First of all, add a new button in MainPage.xaml.cs file and bind it to LocalNotificationCommand. In the MainPageVeiwModel.cs, create new command called LocalNotification and intialize in the constructor: After that, create […]
Xamarin Forms – Login Form
In this part of tutorial, we ‘ll see how to made Xamarin Forms – Login Page. You can find in the last post the introduction to Xamarin Forms Tutorial – Prism. Creating LoginPage First of all, let’s create a new ContentPage called LoginPage.xaml.You can see that Visual Studio creates a new file under ViewModels forlder […]