BleMicroPythonSample.ViewModelBase.ShowLoadingDialog C# (CSharp) Method

ShowLoadingDialog() protected method

Shows a loading dialog with the given text.
protected ShowLoadingDialog ( string text ) : void
text string Text to display.
return void
		protected void ShowLoadingDialog(string text)
		{
			Device.BeginInvokeOnMainThread(() =>
			{
				UserDialogs.Instance.ShowLoading(text);
			});
		}