Skip to content

Commit d8de5be

Browse files
committed
feat(constants): add max width for authentication pages
- Introduce new constant kMaxAuthWidth with a value of 400 - This constant can be used to ensure consistent max width across all authentication pages in the application
1 parent c1bd945 commit d8de5be

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/shared/constants/app_constants.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ abstract final class AppConstants {
33
/// The maximum width the application should occupy on large screens.
44
static const double kMaxAppWidth = 1000;
55

6+
/// The maximum width for the authentication pages.
7+
static const double kMaxAuthWidth = 400;
8+
69
/// The duration for debouncing search input, to prevent excessive API calls.
710
static const Duration kSearchDebounceDuration = Duration(milliseconds: 300);
811

0 commit comments

Comments
 (0)