TF-295 Apply new UI for composer web browser
This commit is contained in:
@@ -773,4 +773,47 @@ class AppLocalizations {
|
||||
'Email address copied to clipboard',
|
||||
name: 'email_address_copied_to_clipboard');
|
||||
}
|
||||
|
||||
String get minimize {
|
||||
return Intl.message(
|
||||
'Minimize',
|
||||
name: 'minimize');
|
||||
}
|
||||
|
||||
String get fullscreen {
|
||||
return Intl.message(
|
||||
'Fullscreen',
|
||||
name: 'fullscreen');
|
||||
}
|
||||
|
||||
String get close {
|
||||
return Intl.message(
|
||||
'Close',
|
||||
name: 'close');
|
||||
}
|
||||
|
||||
String get send {
|
||||
return Intl.message(
|
||||
'Send',
|
||||
name: 'send');
|
||||
}
|
||||
|
||||
String get attachments {
|
||||
return Intl.message(
|
||||
'Attachments',
|
||||
name: 'attachments');
|
||||
}
|
||||
|
||||
String get show_all {
|
||||
return Intl.message(
|
||||
'Show all',
|
||||
name: 'show_all');
|
||||
}
|
||||
|
||||
String get message_confirm_send_email {
|
||||
return Intl.message(
|
||||
'Are you sure to send messages without a subject?',
|
||||
name: 'message_confirm_send_email');
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,6 +1,7 @@
|
||||
import 'package:get/get_navigation/src/routes/get_route.dart';
|
||||
import 'package:tmail_ui_user/features/composer/presentation/composer_bindings.dart';
|
||||
import 'package:tmail_ui_user/features/composer/presentation/composer_view.dart';
|
||||
import 'package:tmail_ui_user/features/composer/presentation/composer_view.dart'
|
||||
if (dart.library.html) 'package:tmail_ui_user/features/composer/presentation/composer_view_web.dart';
|
||||
import 'package:tmail_ui_user/features/destination_picker/presentation/destination_picker_bindings.dart';
|
||||
import 'package:tmail_ui_user/features/destination_picker/presentation/destination_picker_view.dart';
|
||||
import 'package:tmail_ui_user/features/home/presentation/home_bindings.dart';
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
|
||||
abstract class RouterArguments with EquatableMixin {}
|
||||
Reference in New Issue
Block a user