The goal here is to create a dynamic navigational Flutter draw menu and then have menu items being added through the data coming from a http GET call. Then have each item refer to a route using their unique id. We will first create the menu, then add some static items, then take use of […]
Tag Archives: http
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 […]