-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
30525ff
commit e74e201
Showing
14 changed files
with
907 additions
and
793 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
core/lib/presentation/constants/confirmation_dialog_key_values.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
class ConfirmationDialogKeyValues { | ||
static const String title = 'tmail_confirmation_dialog_title'; | ||
static const String content = 'tmail_confirmation_dialog_content'; | ||
static const String confirmButton = 'tmail_confirmation_dialog_confirm_button'; | ||
static const String cancelButton = 'tmail_confirmation_dialog_cancel_button'; | ||
static const String closeButton = 'tmail_confirmation_dialog_close_button'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
class SearchKeyValues { | ||
static const String searchInputField = 'tmail_search_input_field'; | ||
static const String searchUserResult = 'tmail_search_user_result'; | ||
static const String searchEmailResult = 'tmail_search_email_result'; | ||
} | ||
|
||
// When search input field is focused | ||
// And search input field is not empty | ||
// Then user result should be shown with maximum 2 results | ||
// And email result should be shown with maximum 5 results |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
lib/features/base/key_values/login_basic_auth_key_values.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
class LoginBasicAuthKeyValues { | ||
static const String loginView = 'tmail_login_view'; | ||
static const String loginEmailField = 'tmail_login_email_field'; | ||
static const String loginPasswordField = 'tmail_login_password_field'; | ||
static const String loginSubmitButton = 'tmail_login_submit_button'; | ||
} |
Oops, something went wrong.