18 lines
596 B
Dart
18 lines
596 B
Dart
/// Fichier d'index pour tous les widgets du dashboard
|
|
/// Facilite les imports et maintient une API propre
|
|
library dashboard_widgets;
|
|
|
|
// === WIDGETS DE SECTION ===
|
|
export 'dashboard_welcome_section.dart';
|
|
export 'dashboard_stats_grid.dart';
|
|
export 'dashboard_quick_actions_grid.dart';
|
|
export 'dashboard_recent_activity_section.dart';
|
|
export 'dashboard_insights_section.dart';
|
|
export 'dashboard_drawer.dart';
|
|
|
|
// === WIDGETS ATOMIQUES ===
|
|
export 'dashboard_stats_card.dart';
|
|
export 'dashboard_quick_action_button.dart';
|
|
export 'dashboard_activity_tile.dart';
|
|
export 'dashboard_metric_row.dart';
|