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 […]
Category Archives: Dart
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 […]