The apps listed here are publicly known to be built with Xamarin.Forms.
For a lengthy list of customer case studies and endorsements, visit the Xamarin Customer page.
https://play.google.com/store/apps/details?id=br.com.JetEbusiness.ZapCommerce
The apps listed here are publicly known to be built with Xamarin.Forms.
For a lengthy list of customer case studies and endorsements, visit the Xamarin Customer page.
https://play.google.com/store/apps/details?id=br.com.JetEbusiness.ZapCommerce
using System; | |
using System.Collections; | |
using System.Windows.Input; | |
using Android.Content; | |
using Android.Runtime; | |
using Android.Support.V7.Widget; | |
using Android.Util; | |
using MvvmCross.Binding.Attributes; | |
using MvvmCross.Binding.Droid.Views; |
public class BaseViewModel : MvxViewModel, IBackViewModel | |
{ | |
#region InvokeOnMainThreadAsync | |
protected Task InvokeOnMainThreadAsync(Action action) | |
{ | |
var tcs = new TaskCompletionSource<bool>(); | |
if (Dispatcher != null) | |
{ | |
Dispatcher.RequestMainThreadAction(() => | |
{ |