Ejemplo n.º 1
0
        public async void Load()
        {
            IsAvailable = await ContactPicker.IsSupportedAsync();

            RaisePropertyChanged(nameof(IsAvailable));
            if (!IsAvailable)
            {
                Status = "ContactPicker is not supported on this platform";
            }
            else
            {
                Status = "ContactPicker is supported";
            }
        }