Create a simple Bottom Navigation Bar in Flutter

This is my tutorial on how to create a simple bottom navigation bar. It’s very simple if you choose not to reinvent the wheel. We will first create a bottom navigational bar and then add some content in it. What we will use is the bottom_navy_bar package. I am using version 6.0.0. Open Visual Code. …

Create a Flutter Navigational Menu with dynamic menu items from a http GET call

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 …