Skip to content

Instantly share code, notes, and snippets.

@Teacher55555
Last active February 6, 2024 09:12
Show Gist options
  • Save Teacher55555/eee6b55d414d28d48b6a3fe9f6378299 to your computer and use it in GitHub Desktop.
Save Teacher55555/eee6b55d414d28d48b6a3fe9f6378299 to your computer and use it in GitHub Desktop.
private void SpeechInputProgress(string s)
{
if (DeviceInfo.Platform == DevicePlatform.Android)
{
RecognitionText = s;
}
else
{
RecognitionText += s + " ";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment