Skip to content

Commit f02776e

Browse files
committed
chore: barrel files
1 parent b3e1bb6 commit f02776e

File tree

5 files changed

+11
-0
lines changed

5 files changed

+11
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/// Defines application-wide constants.
2+
abstract final class AppConstants {
3+
/// The maximum width the application should occupy on large screens.
4+
static const double kMaxAppWidth = 1000;
5+
}

lib/shared/constants/constants.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export 'app_constants.dart';

lib/shared/extensions/extensions.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
export 'app_user_role_l10n.dart';
12
export 'content_status_l10n.dart';
3+
export 'feed_decorator_type_l10n.dart';
24
export 'source_type_l10n.dart';
35
export 'string_truncate.dart';

lib/shared/services/services.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export 'throttled_fetching_service.dart';

lib/shared/shared.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
export 'constants/constants.dart';
12
export 'extensions/extensions.dart';
3+
export 'services/services.dart';

0 commit comments

Comments
 (0)