@@ -14,7 +14,6 @@ import 'package:filesize/filesize.dart';
14
14
import 'package:flutter/foundation.dart' ;
15
15
import 'package:flutter/material.dart' ;
16
16
import 'package:flutter/services.dart' ;
17
- import 'package:flutter_svg/flutter_svg.dart' ;
18
17
import 'package:get/get.dart' ;
19
18
import 'package:html/parser.dart' ;
20
19
import 'package:html_editor_enhanced/html_editor.dart' ;
@@ -1021,7 +1020,6 @@ class ComposerController extends BaseController
1021
1020
AppLocalizations .of (context).message_dialog_send_email_without_recipient,
1022
1021
AppLocalizations .of (context).add_recipients,
1023
1022
title: AppLocalizations .of (context).sending_failed,
1024
- icon: SvgPicture .asset (imagePaths.icSendToastError, fit: BoxFit .fill),
1025
1023
hasCancelButton: false ,
1026
1024
showAsBottomSheet: true ,
1027
1025
).whenComplete (() => _sendButtonState = ButtonState .enabled);
@@ -1044,7 +1042,6 @@ class ComposerController extends BaseController
1044
1042
},
1045
1043
showAsBottomSheet: true ,
1046
1044
title: AppLocalizations .of (context).sending_failed,
1047
- icon: SvgPicture .asset (imagePaths.icSendToastError, fit: BoxFit .fill),
1048
1045
hasCancelButton: false
1049
1046
).whenComplete (() => _sendButtonState = ButtonState .enabled);
1050
1047
return ;
@@ -1053,17 +1050,13 @@ class ComposerController extends BaseController
1053
1050
if (subjectEmail.value == null || subjectEmail.isEmpty == true ) {
1054
1051
showConfirmDialogAction (context,
1055
1052
AppLocalizations .of (context).message_dialog_send_email_without_a_subject,
1056
- AppLocalizations .of (context).send_anyway,
1057
- onConfirmAction: () => _handleSendMessages (context),
1058
- onCancelAction: popBack,
1053
+ AppLocalizations .of (context).cancel,
1054
+ cancelTitle: AppLocalizations .of (context).send_anyway,
1055
+ onCancelAction: () => _handleSendMessages (context),
1056
+ onConfirmAction: popBack,
1059
1057
autoPerformPopBack: false ,
1060
1058
title: AppLocalizations .of (context).empty_subject,
1061
- cancelButtonColor: AppColor .blue700,
1062
- cancelLabelButtonColor: Colors .white,
1063
- actionButtonColor: AppColor .grayBackgroundColor,
1064
- confirmLabelButtonColor: AppColor .steelGray600,
1065
1059
showAsBottomSheet: true ,
1066
- icon: SvgPicture .asset (imagePaths.icEmpty, fit: BoxFit .fill),
1067
1060
).whenComplete (() => _sendButtonState = ButtonState .enabled);
1068
1061
return ;
1069
1062
}
@@ -1075,7 +1068,6 @@ class ComposerController extends BaseController
1075
1068
AppLocalizations .of (context).got_it,
1076
1069
title: AppLocalizations .of (context).sending_failed,
1077
1070
showAsBottomSheet: true ,
1078
- icon: SvgPicture .asset (imagePaths.icSendToastError, fit: BoxFit .fill),
1079
1071
hasCancelButton: false
1080
1072
).whenComplete (() => _sendButtonState = ButtonState .enabled);
1081
1073
return ;
@@ -1088,7 +1080,6 @@ class ComposerController extends BaseController
1088
1080
filesize (mailboxDashBoardController.maxSizeAttachmentsPerEmail? .value ?? 0 , 0 )),
1089
1081
AppLocalizations .of (context).got_it,
1090
1082
title: AppLocalizations .of (context).sending_failed,
1091
- icon: SvgPicture .asset (imagePaths.icSendToastError, fit: BoxFit .fill),
1092
1083
hasCancelButton: false
1093
1084
).whenComplete (() => _sendButtonState = ButtonState .enabled);
1094
1085
return ;
@@ -1236,12 +1227,6 @@ class ComposerController extends BaseController
1236
1227
_sendButtonState = ButtonState .enabled;
1237
1228
_closeComposerAction (closeOverlays: true );
1238
1229
},
1239
- icon: SvgPicture .asset (
1240
- imagePaths.icQuotasWarning,
1241
- width: 40 ,
1242
- height: 40 ,
1243
- colorFilter: AppColor .colorBackgroundQuotasWarning.asFilter (),
1244
- ),
1245
1230
);
1246
1231
}
1247
1232
@@ -2266,12 +2251,6 @@ class ComposerController extends BaseController
2266
2251
_autoFocusFieldWhenLauncher ();
2267
2252
}
2268
2253
},
2269
- icon: SvgPicture .asset (
2270
- imagePaths.icQuotasWarning,
2271
- width: 40 ,
2272
- height: 40 ,
2273
- colorFilter: AppColor .colorBackgroundQuotasWarning.asFilter (),
2274
- ),
2275
2254
);
2276
2255
}
2277
2256
@@ -2467,12 +2446,6 @@ class ComposerController extends BaseController
2467
2446
_closeComposerButtonState = ButtonState .enabled;
2468
2447
_closeComposerAction (closeOverlays: true );
2469
2448
},
2470
- icon: SvgPicture .asset (
2471
- imagePaths.icQuotasWarning,
2472
- width: 40 ,
2473
- height: 40 ,
2474
- colorFilter: AppColor .colorBackgroundQuotasWarning.asFilter (),
2475
- ),
2476
2449
);
2477
2450
}
2478
2451
0 commit comments