Example xamarin form...
<Label Text="Demo 3 - Async Command with CanExecute" FontAttributes="Bold" />
<Button Text="Simulate 5 Second Download" HorizontalOptions="Center"
Command="{Binding SimulateDownloadCommand}" />
<StackLayout Orientation="Horizontal">
<Label Text="Result: " />
<Label Text="{Binding SimulatedDownloadResult}" />
</StackLayout>