16 lines
379 B
Dart
16 lines
379 B
Dart
/// Settings Feature
|
|
///
|
|
/// Complete settings feature following clean architecture.
|
|
/// Includes app configuration, theme management, and user preferences.
|
|
///
|
|
/// Usage:
|
|
/// ```dart
|
|
/// import 'package:retail/features/settings/settings.dart';
|
|
/// ```
|
|
library;
|
|
|
|
// Export all layers
|
|
export 'data/data.dart';
|
|
export 'domain/domain.dart';
|
|
export 'presentation/presentation.dart';
|