An Open-source Kid Starter Application Using Flutter
Kid Starter
Packages Used
This application is using one third-party package from the open-source community. Thanks to the developers of just_audio: ^0.9.21 for this amazing package. The purpose of using this package is to play audio files in the flutter application. It’s a Flutter Favorite package.
In addition to the package, for accurate color
pronunciation, the audio files are from macmillan dictionary.
just_audio: ^0.9.21 //For playing audio files
App Demo
File Pattern Inside The lib
Folder
lib
├── app
│ ├── controllers
│ │ ├── alphabet_en_controller.dart
│ │ ├── color_controller.dart
│ │ └── numeric_en_controller.dart
│ ├── models
│ │ ├── alphabet_en_model.dart
│ │ ├── color_model.dart
│ │ └── numeric_en_model.dart
│ ├── screens
│ │ ├── alphabet_en_screen.dart
│ │ ├── color_screen.dart
│ │ ├── home_screen.dart
│ │ ├── numeric_en_screen.dart
│ │ ├── shape_screen.dart
│ │ └── story_screen.dart
│ ├── widgets
│ │ ├── category_card.dart
│ │ ├── page_header.dart
│ │ └── tile_card.dart
│ ├── constant.dart
│ └── splash_screen.dart
├── generated_plugin_registrant.dart
└── main.dart