Files
retail/lib/features/categories/presentation/providers/providers.dart
Phuoc Nguyen bdaf0b96c5 fix
2025-10-10 17:36:10 +07:00

14 lines
507 B
Dart

/// Export all category providers
///
/// Contains Riverpod providers for category state management
library;
export 'category_datasource_provider.dart';
export 'categories_provider.dart';
export 'category_product_count_provider.dart';
// Note: SelectedCategory provider is defined in categories_provider.dart
// but we avoid exporting it separately to prevent ambiguous exports with
// the products feature. Use selectedCategoryProvider directly from
// categories_provider.dart or from products feature.