Make a HTTP GET request to get REST API JSON data into a List of Objects in Dart/Flutter

Thought I would write down the way to simple just get some data from a HTTP get call/request. I made it very simple since I realized you can use a method called from. I’ll tell you more about it as we go! Firstly set up your http library for Flutter: Add the http flutter library …

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 …