Kid Starter
This application is an updated version of “flutter_kid_starter” from – QuangRau. I am using the latest Flutter 3.0 SDK, to update this awesome open-source application. Since it’s an open-source project, the source code is governed by an MIT-style license that can be found in the LICENSE file or at MIT LICENSE Info.
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