TF-233 Add presentation for create new mailbox
This commit is contained in:
@@ -585,4 +585,32 @@ class AppLocalizations {
|
||||
name: 'message_has_been_sent_failure',
|
||||
);
|
||||
}
|
||||
|
||||
String get done {
|
||||
return Intl.message(
|
||||
'Done',
|
||||
name: 'done'
|
||||
);
|
||||
}
|
||||
|
||||
String get new_mailbox {
|
||||
return Intl.message(
|
||||
'New mailbox',
|
||||
name: 'new_mailbox',
|
||||
);
|
||||
}
|
||||
|
||||
String get mailbox_location {
|
||||
return Intl.message(
|
||||
'Mailbox location',
|
||||
name: 'mailbox_location',
|
||||
);
|
||||
}
|
||||
|
||||
String get default_mailbox {
|
||||
return Intl.message(
|
||||
'Default mailbox',
|
||||
name: 'default_mailbox',
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -9,6 +9,8 @@ import 'package:tmail_ui_user/features/login/presentation/login_bindings.dart';
|
||||
import 'package:tmail_ui_user/features/login/presentation/login_view.dart';
|
||||
import 'package:tmail_ui_user/features/email/presentation/email_view.dart';
|
||||
import 'package:tmail_ui_user/features/mailbox/presentation/mailbox_view.dart';
|
||||
import 'package:tmail_ui_user/features/mailbox_creator/presentation/mailbox_creator_bindings.dart';
|
||||
import 'package:tmail_ui_user/features/mailbox_creator/presentation/mailbox_creator_view.dart';
|
||||
import 'package:tmail_ui_user/features/mailbox_dashboard/presentation/mailbox_dashboard_bindings.dart';
|
||||
import 'package:tmail_ui_user/features/mailbox_dashboard/presentation/mailbox_dashboard_view.dart';
|
||||
import 'package:tmail_ui_user/features/thread/presentation/thread_view.dart';
|
||||
@@ -52,5 +54,10 @@ class AppPages {
|
||||
opaque: false,
|
||||
page: () => DestinationPickerView(),
|
||||
binding: DestinationPickerBindings()),
|
||||
GetPage(
|
||||
name: AppRoutes.MAILBOX_CREATOR,
|
||||
opaque: false,
|
||||
page: () => MailboxCreatorView(),
|
||||
binding: MailboxCreatorBindings()),
|
||||
];
|
||||
}
|
||||
|
||||
@@ -8,4 +8,5 @@ abstract class AppRoutes {
|
||||
static const SESSION = '/session';
|
||||
static const COMPOSER = '/composer';
|
||||
static const DESTINATION_PICKER = '/destinationPicker';
|
||||
static const MAILBOX_CREATOR = '/mailboxCreator';
|
||||
}
|
||||
Reference in New Issue
Block a user