Here we will see how to create a custom tab bar and load network data using RepositoryProvider and how tabs loads data on button click. Our tab bar would be responsive to click which means we will maintain state of the tabs. Certain tab will load certain data from the network. Network data loader functions…
Month: March 2023
Flutter Getx Custom Tab Bar | Load Data
Here we will learn how to load network data using custom tab bar and getx package during on toggle method. Here we will see how create a custom tab bar and toggle values and load data from network at the same time. So If you want to load data from network and toggle tabs and…
Camera Permission for iOS Flutter
You need to allow camera permission for ios device. Without this you won’t be to access gallery and camera resources. Put the above info in your info.plist file.
Firebase Data & ListView
Here we will see how to load data from Firebase Firestore and show the data in a ListView. We will use ListView.builder to do. We will have a list name items and a temporary list tempList. items would be accessed from the UI. Once we load the data then we will assign data from tempList…