This commit is contained in:
Phuoc Nguyen
2025-10-10 17:36:10 +07:00
parent 04f7042b8d
commit bdaf0b96c5
82 changed files with 4753 additions and 329 deletions

View File

@@ -0,0 +1,15 @@
/// Home/Cart Feature
///
/// Complete home and shopping cart feature following clean architecture.
/// Includes cart management, product selection, and checkout operations.
///
/// Usage:
/// ```dart
/// import 'package:retail/features/home/home.dart';
/// ```
library;
// Export all layers
export 'data/data.dart';
export 'domain/domain.dart';
export 'presentation/presentation.dart';