Flutter Notifications

Push notifications and local notifications for Flutter using Firebase Cloud Messaging and flutter_local_notifications.

fierzone Updated

File contents

Flutter Notifications

Priority: P1 (OPERATIONAL)

Push and local notifications interactions.

Guidelines

  • Stack: Use firebase_messaging (Push) + flutter_local_notifications (Local/Foreground).
  • Lifecycle: Handle all 3 states explicitly: Foreground, Background, Terminated.
  • Permissions: Prime users with a custom dialog explaining benefits before system request.
  • Navigation: Validate notification payload data strictly before navigating.
  • Badges: Manually clear iOS app badges when visiting relevant screens.

Implementation Details

Anti-Patterns

  • No Unconditional Permission: Don't ask on startup without context.
  • No Missing State Handlers: Forgetting getInitialMessage() breaks "open from terminated".
  • No Forgotten Badge Clear: Leaving notifications un-cleared frustrates users.
  • No Direct Navigation: Parsing JSON payloads without validation leads to crashes.

Related Topics

flutter-navigation | mobile-ux-core | firebase/fcm

fierzone/agent-skills-standard/tree/main/skills/flutter/flutter-notifications commit 0849fbc3e1

Frequently asked questions

npx skillmds@latest add fierzone/flutter-notifications