Let's try to learn complexity with simplicity. Please Share it and don't forget to SUBSCRIBE our channel for new videos : https://www.youtube.com/channel/UCCOTcYjHr9PVwkMC-Fugk0Q
Introduction: MvvmCross is a cross-platform MVVM framework that enables developers to create powerful cross platform apps. It supports Xamarin.iOS, Xamarin.Android, Xamarin.Mac, Xamarin.Forms, Universal Windows Platform (UWP) and Windows Presentation Framework (WPF). When we take a look at the basic architecture patterns of Xamarin.Forms, we see some of the same concepts of MvvmCross. Forms implements Mvvm as well, and offers built-in support for Dependency injection, multiple Navigation patterns, Data-binding and messaging between loosely coupled components. Also this allows us to move the ViewModels to a portable project (PCL) and re-use this code throughout all the different UI projects.
FreshMvvm is a super light Mvvm Framework designed specifically for Xamarin.Forms. It is designed to be Easy, Simple and Flexible. In my previous article, I was written an article about storing list of contacts in SQLite database with Xamarin.Forms default MVVM. In this tutorial we will achieve the same Xamarin.Forms application with FreshMvvm framework.
Introduction: In Xamarin.Android, we can easily make rounded corner EditText with selector we need some simple steps to create xml files in layout resource directory of android application. This article will guide you in details to create rounded corner EditText.
We can easily make phone call, sending message, email in Xamarin.forms. In this article we can learn how to implement them in Xamarin.Forms (PCL) project.
Fluent validation is a small validation library for .NET that uses a Fluent interface and lambda expressions for building validation rules for your business objects. Fluent validation is one way of setting up dedicated validator objects, that you would use when you want to treat validation logic as separate from business logic. This article describes how to do FluentValidaiton in Xamarin.Forms for Registration Page.
Introduction: Preferences are pieces of information that you store persistently and use to configure your app. Most preferences are stored locally using the Cocoa preferences system known as the user defaults system. This article covers working with NSUserDefault to save default settings in a Xamarin iOS App or Extension.
Introduction: In Xamarin.Forms, there is no default RadioButton control available and we need to create our own custom RadioButton control. This article can explain you about to create RadioButton control and it's properties.
Introduction: Some times we may need to navigate to from one TextField to another with help of iOS device keyboard "Next", "Go" buttons. This article will tell you about how to interact with these iOS keyboard buttons from Xamarin.iOS.
Introduction: In Xamarin.Forms, there is no default CheckBox control available and we need to create our own custom CheckBox control. This article can explain you about to create CheckBox control and it's properties.