Consolide le lot applicatif watch companion validé : - télémétrie fréquence cardiaque live remontée montre -> téléphone (collecteur watch, adapter Wear Data Layer, persistance Drift, propagation aux écrans historique/programme/profil/exécution) - notifications de séance en arrière-plan côté téléphone (service foreground de statut + passerelle applicative) - finitions montre : chrono d'étape, score d'étape, retrait du bouton "lancer une séance", thème, icônes et polices watch_app Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
13 lines
417 B
Dart
13 lines
417 B
Dart
/// Application layer entry point.
|
|
///
|
|
/// This layer owns use cases and ports. It may depend on domain, but concrete
|
|
/// adapters are wired only from the composition root.
|
|
library;
|
|
|
|
export 'ports.dart';
|
|
export 'session_notification_use_cases.dart';
|
|
export 'starter_content/basket_starter_seed_v1.dart';
|
|
export 'starter_content/starter_content.dart';
|
|
export 'use_cases.dart';
|
|
export 'watch_companion_use_cases.dart';
|