codifyiq_notification_center 1.0.0 copy "codifyiq_notification_center: ^1.0.0" to clipboard
codifyiq_notification_center: ^1.0.0 copied to clipboard

A Play Store-style notification bell and center for tracking long-running, user-initiated background tasks.

example/README.md

codifyiq_notification_center example #

import 'package:codifyiq_notification_center/codifyiq_notification_center.dart';
import 'package:flutter/material.dart';

final controller = NotificationCenterController();

// Drive the controller from your own task layer.
void uploadInvoice() {
  controller.start(id: 'job-1', title: 'Uploading invoice.pdf', progress: 0);
  controller.updateProgress('job-1', progress: 0.42);
  controller.complete('job-1', description: 'Saved to Documents/invoice.pdf');
}

// Surface the stoplight bell in your AppBar.
AppBar buildAppBar() {
  return AppBar(actions: [NotificationBellButton(controller: controller)]);
}

A runnable catalog demonstrating every CodifyIQ component lives in the example/ app at the repository root.

0
likes
160
points
93
downloads

Documentation

API reference

Publisher

verified publishercodifyiq.com

Weekly Downloads

A Play Store-style notification bell and center for tracking long-running, user-initiated background tasks.

Repository (GitHub)
View/report issues

Topics

#codifyiq #ui #widget #notifications

License

MIT (license)

Dependencies

flutter

More

Packages that depend on codifyiq_notification_center