Xamarin Forms - Working with threads
Mobile devices are optimised to run complex tasks on multiple threads. Running any form of complex task on the UI thread (the main thread) will cause the UI of your application to hang (or at least seem to anyway) until the operation is complete. The fix is to run the task on another thread and return a result back to the UI thread. - read more.
10 Oct 2016 - 7 Comments