How to decouple a large Flutter app into independent packages?
I'm working on breaking down a large Flutter monolith into smaller, independent packages for better modularity. However, I’ve hit challenges in these areas: Database: How do you share a database (e.g., SQLite, Hive) across multiple packages without tight coupling? Notifications:…