In this part of Angular tutorial, we’re going to setup angular material of our Angular application. Install prerequisites First of all, we need to install angular CLI and NodeJS. You can have more details on angular.io and nodejs.org .After installing NodeJS switch your environment, you have to execute this command to install angular CLI: Now, […]
Author: AlphaTechStudios
Xamarin Forms – Chat Application – Friends (part 2)
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 […]
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 […]
.NET Core 3.1 WEB API – JWT refresh Token (part 2)
In the last posts, we saw how to setup .Net Core Web API 3.1 project with Entity Framework and secure Web API by JWT Tokens . If you haven’t seen it yet, I invite you to read it through this links: .NET Core 3.1 WEB API – Entity Framework Core 3.1.7 (part 1) .NET Core […]
.NET Core 3.1 WEB API – JWT authentication Tokens (part 1)
In the last article, we saw how to setup .Net Core Web API 3.1 project with Entity Framework. If you haven’t seen it yet, I invite you to read it through this links: .NET Core 3.1 WEB API – Entity Framework Core 3.1.7 (part 1) .NET Core 3.1 WEB API – Entity Framework Core 3.1.7 […]
.NET Core 3.1 WEB API – Entity Framework Core 3.1.7 (part 2)
In the last tutorial, we saw together how to set up the general architecture for .NET Core Web API. If you haven’t read the article, here’s the link. In this new tutorial, we ‘ll see how to: Configure the settings file and put the database connection string. Call UsersManager in UsersController. Use Postman tool to […]
.NET Core 3.1 WEB API – Entity Framework Core 3.1.7 (part 1)
In this post we’ll go through an example of how to implement create .NET Core Web API project with Entity Framework Core 3.1.7. Before beginning coding, let’s see together the architecture schema. In fact, we need to create a project which can be used in real companies context. That’s mean, develop in accordance with the […]
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 […]