What actually moves the price inside €7,000–25,000
The range is wide because two Flutter apps with the same screen count can differ 3x in real work. The backend reads decide most of it. A list of records pulled from Firestore with simple filters is cheap. The moment you add real-time sync, multi-user state, or offline-first behavior, the cost climbs — conflict resolution between a device and the server is genuinely hard, not a checkbox.
The other big lever is native platform integrations. Each of these is its own small project with its own permission prompts, OS quirks, and store-review scrutiny:
- Camera / photo upload
- GPS and background location
- Push notifications (FCM is in scope; deep-linking from a push is more)
- Biometrics (Face ID / fingerprint)
- Bluetooth / NFC
A login + a few CRUD screens + push sits near the €7,000 floor. Add three of the integrations above plus offline sync and you are at the €25,000 ceiling. Nothing exotic — just more surface area to build and test on both platforms.