Boong Task
Structure
├── README.md
├── lib
│ ├── main.dart
│ └── src
│ ├── app.dart
│ ├── helpers
│ │ ├── add_data.dart
│ │ └── read_data.dart
│ └── presentation
│ ├── screens
│ │ ├── add_data.dart
│ │ ├── home_screen.dart
│ │ └── view_data.dart
│ └── widgets(empty)
├── pubspec.yaml
-
Here main function is the entrypoint.
-
There are two helper functions to add data (add_data) and to read data (read_data)
-
There are 3 screens => homescreen, view data and add data
-
No external libraries for reading CSV has been used