Esempio n. 1
0
 partial void ENDevExposureHistoryBtn_TouchUpInside(UIButton sender)
 {
     Task.Run(async() => {
         string res       = await _enDeveloperViewModel.FetchExposureConfigurationAsync();
         ENDevOutput.Text = "Copied to clipboard" + res;
     });
 }
 private void FetchExposureConfiguration()
 {
     Task.Run(async() => {
         string res = await _viewModel.FetchExposureConfigurationAsync();
         RunOnUiThread(() => {
             UpdateText("Copied to clipboard:\n" + res);
         });
     });
 }