Gesture Recognizers with Xamarin.Forms
iOS and Android apps both provide a way to wire up a UI control to listen for specific touch events. These events are called gestures. Typically, »
iOS and Android apps both provide a way to wire up a UI control to listen for specific touch events. These events are called gestures. Typically, »
When writing cross platform apps with Xamarin, our goal is share as close to 100% of our code across all the platforms. While this is an »
Sometimes when we are creating an iOS app with Xamarin, we choose to forego using the Storyboard designer, and simply create the user interface in C# »
As a Xamarin University instructor, I am occassionally asked how I would put together a typical MVVM based app while connecting to a remote service. This »
Model-View-ViewModel (Mvvm) is a fantastic pattern when designing cross platform mobile applications. With Mvvm, we can write our ViewModels in shared code and target Xamarin.iOS, »