zeba_academy_task_radar 0.0.2 copy "zeba_academy_task_radar: ^0.0.2" to clipboard
zeba_academy_task_radar: ^0.0.2 copied to clipboard

A customizable Flutter package to visualize tasks and learning progress in a circular radar UI with animations and offline persistence.

🎯 zeba_academy_task_radar #

A powerful and customizable Flutter package to visualize tasks, lessons, or goals in a circular radar-style UI. Designed for gamified learning, progress tracking, and engaging user experiences.


✨ Features #

  • 🎯 Circular radar visualization of tasks
  • πŸ“Š Dynamic progress-based rendering
  • πŸ’Ύ Offline data persistence using SharedPreferences
  • 🎬 Smooth animations for task updates
  • πŸ•Ή Gamified learning and productivity tracking
  • 🎨 Fully customizable UI (colors, size, animation)

πŸ“¦ Installation #

Add this to your pubspec.yaml:

dependencies:
  zeba_academy_task_radar: ^0.0.1

Then run:

flutter pub get

πŸš€ Usage #

1. Import the package #

import 'package:zeba_academy_task_radar/zeba_academy_task_radar.dart';

2. Initialize Controller #

final controller = TaskController();

@override
void initState() {
  super.initState();
  controller.load();
}

3. Add Tasks #

await controller.addTask(
  TaskModel(id: '1', title: 'Learn Flutter', progress: 0.3),
);

4. Update Progress #

await controller.updateProgress('1', 0.8);

5. Display Radar #

TaskRadarWidget(tasks: controller.tasks)

🎨 Customization (Coming Soon) #

  • Task colors
  • Labels & legends
  • Touch interaction
  • Achievement badges

πŸ§ͺ Testing #

This package supports unit testing with mocked SharedPreferences.

TestWidgetsFlutterBinding.ensureInitialized();
SharedPreferences.setMockInitialValues({});

πŸ“ Project Structure #

lib/
 β”œβ”€β”€ zeba_academy_task_radar.dart
 β”œβ”€β”€ src/
 β”‚   β”œβ”€β”€ models/
 β”‚   β”œβ”€β”€ controller/
 β”‚   β”œβ”€β”€ painters/
 β”‚   β”œβ”€β”€ widgets/
 β”‚   └── storage/

πŸ“œ License (GPL-3.0) #

This project is licensed under the GNU General Public License v3.0.

GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007

Copyright (C) 2026 Sufyan bin Uzayr

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

See the GNU General Public License for more details.

πŸ‘¨β€πŸ’» About Me #

✨ I’m Sufyan bin Uzayr, an open-source developer passionate about building and sharing meaningful projects. You can learn more about me and my work at sufyanism.com or connect with me on Linkedin


🌐 Your all-in-one no-bloat hub! #

πŸš€ Explore cutting-edge resources in coding, tech, and development at zeba.academy and code.zeba.academy. Empower yourself with practical skills through curated directives, real-world projects, and hands-on experience. Level up your tech game today! πŸ’»βœ¨

Zeba Academy is a learning platform dedicated to coding, technology, and development.

➑ Visit our main site: https://zeba.academy ➑ Explore hands-on courses: https://code.zeba.academy ➑ YouTube: https://www.youtube.com/@zeba.academy ➑ Instagram: https://www.instagram.com/zeba.academy/


πŸ™Œ Contributing #

Contributions, issues, and feature requests are welcome! Feel free to open a PR or issue.


⭐ Support #

If you like this project, give it a ⭐ on GitHub and share it with others!


Thank you for visiting! πŸš€

1
likes
140
points
8
downloads

Documentation

API reference

Publisher

verified publisherzeba.academy

Weekly Downloads

A customizable Flutter package to visualize tasks and learning progress in a circular radar UI with animations and offline persistence.

Homepage

Topics

#flutter #radar-chart #task-tracker #visualization #productivity

License

GPL-3.0 (license)

Dependencies

flutter, shared_preferences

More

Packages that depend on zeba_academy_task_radar