Facebook Twitter Instagram
    DeepCrazyWorld
    Facebook Twitter Instagram Pinterest YouTube
    • FLUTTER
      • FLUTTER APP
        • QRCode
        • Quiz App
        • Chat GPT
        • PDF App
        • News App
        • Fitness App
        • Weather App
        • BMI Calculator
        • GAME APP
        • Ecommerce App
        • wallpaper App
        • Finance app
        • Chat App
        • Wallet App
        • Taxi App
        • Quran app
        • Music player app
      • FLUTTER UI
        • Splash Screen
        • Onboarding Screen
        • Login Screen
        • Card Design
        • Drawer
    • PROJECT
      • Android Projects
      • College Projects
      • FLUTTER APP
      • Project Ideas
      • PHP Projects
      • Python Projects
    • SOURCE CODE
    • ANDROID
      • ANDROID APP
      • GAME APP
      • ANDROID STUDIO
    • MCQ
      • AKTU MCQ
        • RPA MCQ
        • COA MCQ
        • HPC MCQ
        • SPM MCQ
        • Renewable Energy All MCQ
        • Data Compression MCQ
        • Data Structure MCQ
        • Digital Image Processing MCQ
        • Software Engineering MCQ
        • Machine Learning MCQ
        • Artificial Intelligence MCQ
      • D PHARMA MCQ
        • Pharmaceutics – I MCQ
        • Pharmacognosy MCQ
        • Pharmaceutical Chemistry MCQ
        • Biochemistry and Clinical Pathology MCQ
        • Human Anatomy and Physiology MCQ
        • Heath Education and Community Pharmacy MCQ
    • INTERVIEW QUESTIONS
      • Flutter Interview Questions
      • INTERVIEW QUESTIONS
      • Python Interview Questions
      • Coding ninjas solution
    • MORE
      • WORDPRESS
        • SEO
        • TOP 10 WORDPRESS THEME
      • PRODUCTIVITY
      • Program
      • QUOTES
    DeepCrazyWorld
    Home»FLUTTER»Chronicles App using Flutter Unique Bedtime source code
    FLUTTER

    Chronicles App using Flutter Unique Bedtime source code

    DeepikaBy DeepikaNovember 11, 2023Updated:November 13, 2023No Comments14 Mins Read

    Unique Bedtime Chronicles – Introducing Unique Bedtime Chronicles the groundbreaking mobile application poised to transform the way you connect with your child during those treasured bedtime moments. Chronicles App using Flutter Unique Bedtime source code . Our cutting-edge app redefines the art of bedtime storytelling by empowering you to craft enchanting bedtime tales meticulously tailored to your child’s distinct interests and preferences. With Unique Bedtime Chronicles you’ll forge a profound, lasting bond with your child while kindling their imagination like never before.

    Table of Contents

    Toggle
    • Table of Contents
    • Screenshots
    • Features
    • Project Structure
    • Libraries Used
    • Installation
    • Usage
    • Tests
    • Contributing
    • License
    • Get Full Source Code
    • Conclusion
        • Related Articles:
      • READ MORE

    Table of Contents

    • Features
    • Project Structure
    • Libraries Used
    • Installation
    • Usage
    • Tests
    • Contributing
    • License

    Screenshots

    <img decoding=
    alt textalt textalt text
    Chronicles App using Flutte

    Features

    • Craft bespoke and personalized bedtime stories for your child.
    • Elevate your child to the role of the central character in their unique adventure.
    • Seamlessly introduce characters your child holds dear.
    • Safeguard your child’s treasured stories for future enjoyment in Chronicles App using Flutter

    Project Structure

    .
    ├── app_icon
    │   ├── app-icon.yaml
    │   └── app_icon.png
    ├── assets
    │   ├── font
    │   ├── img
    │   └── json
    ├── bricks
    │   └── feature_template
    ├── bricks_configs
    │   └── feature.json
    ├── lib
    │   ├── core
    │   │   ├── src
    │   │   │   ├── base
    │   │   │   │   ├── base.dart
    │   │   │   │   ├── base_event.dart
    │   │   │   │   ├── base_page_state.dart
    │   │   │   │   ├── base_state.dart
    │   │   │   │   ├── base_vm.dart
    │   │   │   │   ├── base_vm_mixin.dart
    │   │   │   │   ├── wrap_state.dart
    │   │   │   │   └── wrap_state.freezed.dart
    │   │   │   ├── common
    │   │   │   │   ├── common.dart
    │   │   │   │   ├── common_event.dart
    │   │   │   │   ├── common_event.freezed.dart
    │   │   │   │   ├── common_state.dart
    │   │   │   │   ├── common_state.freezed.dart
    │   │   │   │   └── common_vm.dart
    │   │   │   ├── config
    │   │   │   │   ├── app_config.dart
    │   │   │   │   ├── config.dart
    │   │   │   │   ├── env.dart
    │   │   │   │   └── env.g.dart
    │   │   │   ├── constants
    │   │   │   │   ├── constants.dart
    │   │   │   │   ├── date_time_format_constants.dart
    │   │   │   │   ├── device_constants.dart
    │   │   │   │   ├── locale_constants.dart
    │   │   │   │   ├── log_constants.dart
    │   │   │   │   └── ui_constants.dart
    │   │   │   ├── dimen
    │   │   │   │   ├── app_dimen.dart
    │   │   │   │   ├── dimen.dart
    │   │   │   │   └── dimens.dart
    │   │   │   ├── errors
    │   │   │   │   ├── app_error.dart
    │   │   │   │   ├── app_error_listener.dart
    │   │   │   │   ├── app_error_listener_mixin.dart
    │   │   │   │   ├── app_error_mapper.dart
    │   │   │   │   ├── app_exception_wrapper.dart
    │   │   │   │   ├── app_handle_exception.dart
    │   │   │   │   ├── errors.dart
    │   │   │   │   └── exceptions.dart
    │   │   │   ├── extension
    │   │   │   │   ├── extension.dart
    │   │   │   │   └── string_extension.dart
    │   │   │   ├── hive
    │   │   │   │   ├── hive.dart
    │   │   │   │   ├── hive_database_manager.dart
    │   │   │   │   ├── hive_encryption.dart
    │   │   │   │   ├── hive_model.dart
    │   │   │   │   ├── hive_model_mixin.dart
    │   │   │   │   ├── hive_operation.dart
    │   │   │   │   ├── hive_types.dart
    │   │   │   │   ├── primitive_database.dart
    │   │   │   │   ├── primitive_keys.dart
    │   │   │   │   └── secure_database_manager.dart
    │   │   │   ├── mixins
    │   │   │   │   ├── log_mixin.dart
    │   │   │   │   └── mixins.dart
    │   │   │   ├── model
    │   │   │   │   ├── model.dart
    │   │   │   ├── navigation
    │   │   │   │   ├── app_navigator.dart
    │   │   │   │   ├── app_routes.dart
    │   │   │   │   ├── app_routes.gr.dart
    │   │   │   │   └── navigation.dart
    │   │   │   ├── network
    │   │   │   │   ├── base
    │   │   │   │   │   ├── base.dart
    │   │   │   │   │   ├── dio_builder.dart
    │   │   │   │   │   └── network_constants.dart
    │   │   │   │   ├── middleware
    │   │   │   │   │   ├── access_token_interceptor.dart
    │   │   │   │   │   ├── base_interceptor.dart
    │   │   │   │   │   ├── custom_log_interceptor.dart
    │   │   │   │   │   ├── header_interceptor.dart
    │   │   │   │   │   ├── middleware.dart
    │   │   │   │   │   ├── network_info.dart
    │   │   │   │   │   ├── refresh_token_api_service.dart
    │   │   │   │   │   └── refresh_token_interceptor.dart
    │   │   │   │   ├── network.dart
    │   │   │   │   ├── rest_client.dart
    │   │   │   │   ├── rest_client.g.dart
    │   │   │   │   ├── rest_non_auth_client.dart
    │   │   │   │   └── rest_non_auth_client.g.dart
    │   │   │   ├── observer
    │   │   │   │   └── observer.dart
    │   │   │   ├── preference
    │   │   │   │   ├── preference.dart
    │   │   │   ├── stream
    │   │   │   │   └── stream.dart
    │   │   │   ├── theme
    │   │   │   │   └── theme.dart
    │   │   │   ├── usecases
    │   │   │   │   └── usecases.dart
    │   │   │   ├── utils
    │   │   │   │   ├── utils.dart
    │   │   │   └── widgets
    │   │   │       └── widgets.dart
    │   │   └── core.dart
    │   ├── data
    │   │   ├── src
    │   │   │   ├── data_sources
    │   │   │   │   ├── data_sources.dart
    │   │   │   ├── mapper
    │   │   │   │   ├── mapper.dart
    │   │   │   ├── models
    │   │   │   │   ├── models.dart
    │   │   │   └── repositories
    │   │   │       └── repositories.dart
    │   │   └── data.dart
    │   ├── di
    │   │   ├── di.config.dart
    │   │   └── di.dart
    │   ├── domain
    │   │   ├── src
    │   │   │   ├── entities
    │   │   │   │   ├── entities.dart
    │   │   │   ├── repositories
    │   │   │   │   └── repositories.dart
    │   │   │   └── usecases
    │   │   │       └── usecases.dart
    │   │   └── domain.dart
    │   ├── presentation
    │   │   ├── src
    │   │   │   ├── define_story
    │   │   │   │   ├── define_story.dart
    │   │   │   │   ├── define_story_event.dart
    │   │   │   │   ├── define_story_page.dart
    │   │   │   │   ├── define_story_state.dart
    │   │   │   │   └── define_story_vm.dart
    │   │   │   └── app.dart
    │   │   └── presentation.dart
    │   ├── resources
    │   │   ├── generated
    │   │   │   ├── intl
    │   │   │   │   ├── messages_all.dart
    │   │   │   │   ├── messages_en.dart
    │   │   │   │   └── messages_vi.dart
    │   │   │   └── l10n.dart
    │   │   ├── src
    │   │   │   ├── generated
    │   │   │   │   ├── intl
    │   │   │   │   │   ├── messages_all.dart
    │   │   │   │   │   ├── messages_en.dart
    │   │   │   │   │   └── messages_vi.dart
    │   │   │   │   └── l10n.dart
    │   │   │   └── l10n
    │   │   │       ├── intl_en.arb
    │   │   │       └── intl_vi.arb
    │   │   └── resources.dart
    │   └── main.dart
    ├── splash
    │   ├── ic_splash.png
    │   └── splash.yaml
    ├── test
    │   └── widget_test.dart
    ├── Makefile
    ├── analysis_options.yaml
    ├── mason-lock.json
    ├── mason.yaml
    └── pubspec.yaml
    

    Libraries Used

    • retrofit: A type-safe HTTP client for Dart using the Retrofit package.
    • freezed: A code generator for unions/pattern-matching/copy.
    • dartz: Functional programming in Dart.
    • lottie: A library for using Lottie animations in Flutter.
    • hooks_riverpod: A simple way to manage state in your Flutter applications.
    • mockito: Mock library for Dart.
    • hive: Hive is a lightweight and blazing fast key-value database written in pure Dart.
    • get_it: This is a simple Service Locator for Dart and Flutter projects with some additional goodies highly inspired by Splat
    • share_plus: A Flutter plugin to share content from your Flutter app via the platform’s share dialog.
    • flutter_tts: A flutter text to speech plugin (Swift,Kotlin)

    Installation

    1 Getting Started:

    Make sure you have Flutter and Dart installed on your machine. You can install them by following the instructions in the official Flutter documentation.

    2 Clone this repository:

    git clone https://github.com/olololoe110399/bedtime_stories.git

    3 Navigate to the project directory:

    cd bedtime_stories

    4 Install dependencies:

    make sync

    Usage

    Run the app on a simulator or device:

    flutter run

    The app should start and you can explore the Valorant agents.

    Tests

    The project includes unit tests, integration tests, and widget tests to ensure code quality and functionality. To run tests, use the following commands:

    • Run tests
    flutter test

    Contributing

    Contributions are welcome! If you find any bugs or want to add new features, feel free to open an issue or submit a pull request. For major changes, please open an issue first to discuss what you would like to change.

    Please make sure to update tests as needed.

    License

    This project is licensed under the MIT License.

    Resources Used:

    • YouTube
    • Dart & Flutter Packages

    You can check out the entire code of this App here:

    Get Full Source Code

    View Github

    download source code

    Conclusion

    This was all about a quick go through the basic flutter App UI Screen. If you need any assistance regarding flutter app development, you can consult a flutter developer from FlutterDesk. We would love to be of help. Still, if you feel any difficult while dealing with Flutter app development projects, you can reach out to us or hire Flutter developers to outsource any of your app development project.

    Do like & share my Facebook page. if you find this post helpful. Thank you!!

    Happy coding! 😉

    Related Articles:

    • How to Install Flutter in windows 10
    • School Database Management System Project 
    • Flutter Weather app built for Android and iOS with source code
    • Flutter weather application for viewing the weather source code
    • Beautiful Plants App UI design using flutter and firebase
    • Simple Wallet App UI Build With Flutter source code
    • A Beautiful Music Player App Built in Flutter source code
    • The Real taxi app with Flutter source code
    • Login Screen with Firebase Auth and Facebook Login using flutter
    • Onboarding screen for grocery app with flutter source code
    • Onboarding screen UI with Flutter source code
    • Awesome onboarding screen with Flutter source code
    • Create Onboarding login page with flutter page view
    • Quiz App using flutter with source code
    • Make aware people of world bout the diseases A Flutter Healthcare app
    • Flutter music app Search all audio files in android phone
    • A Flutter widget for switching the locale of your app 
    • Offline Android Music Player app for Music Collectors application
    • Automatic Chicken Feeder App using Flutter source code

    READ MORE

    Share. Facebook Twitter LinkedIn WhatsApp Telegram Pinterest Reddit Email
    Previous ArticleFlutter music app Search all audio files in android phone
    Next Article Make aware people of world bout the diseases A Flutter Healthcare app

    Related Posts

    Implementing a Dynamic FAQ Screen UI in Flutter Using ExpansionTile

    FLUTTER 5 Mins Read

    Animated Backgrounds in Flutter: A Complete Guide

    FLUTTER 4 Mins Read

    How to make Diary App using flutter stepwise using getx

    FLUTTER APP 4 Mins Read

    How to Create Music Player UI screen with fully functional in flutter

    FLUTTER APP 3 Mins Read

    Leave A Reply Cancel Reply

    Recent Posts
    • Implementing a Dynamic FAQ Screen UI in Flutter Using ExpansionTile March 29, 2025
    • Creating an Instruction UI Screen in Flutter Application March 29, 2025
    • Animated Backgrounds in Flutter: A Complete Guide March 15, 2025
    • How to make Diary App using flutter stepwise using getx August 31, 2024
    • How to Create Music Player UI screen with fully functional in flutter August 30, 2024
    • How to make ListView Builder Ui in flutter with Source Code August 29, 2024
    • Create a TabBar View in flutter with fully functional stepwise August 28, 2024
    • How to create TabBar view in flutter with source code step wise August 27, 2024
    • How to make Heart rate measure app with Flutter stepwise August 26, 2024
    • How to make ChatGpt App in flutter with source code Stepwise August 25, 2024
    Facebook Twitter Instagram Pinterest YouTube
    • About
    • Contact
    • Disclaimer
    • Privacy Policy
    Copyright by DeepCrazyWorld © 2025

    Type above and press Enter to search. Press Esc to cancel.