Background threads
The theory is you do all your API calls and stuff that takes ages on background threads.
Then when it's ready, you come back and update your UI on the main thread.
(UI must always be updated on the main thread).
Reason: if you don't do things on the ...
coderlyn.hashnode.dev1 min read