Create a List in Flutter using FutureBuilder

In this post I explain how to load external data and displaying it in a list (ListView) in Flutter. Dart provides us some great ways for handling asynchronous operations which is what Futures is all about, and Flutter provides us with great widgets, such as the FutureBuilder which is what I am going to use …

How to generate the SHA-1 hash for Android Google development

Sometimes we need to generate a SHA 1 hash for Playstore publishing or what not. This information can be explained with a single command at the Google documentation website at https://developers.google.com/android/guides/client-auth “Authenticating Your Client”. You’d’ think using the key tool command would be simple enough. Well it is, if you modify the command… This is …