Skip to content

Commit d73221e

Browse files
committed
feat(shared): export utils module
- Added utils module - Exported date formatter
1 parent e0f795f commit d73221e

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

lib/shared/shared.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ library;
77
export 'constants/constants.dart';
88
export 'theme/theme.dart';
99
export 'widgets/widgets.dart';
10+
export 'utils/utils.dart'; // Added export for utils

lib/shared/utils/utils.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/// Barrel file for shared utility functions.
2+
library;
3+
4+
export 'date_formatter.dart';

0 commit comments

Comments
 (0)