TF-105 Make buttons in EmailView easier to press

This commit is contained in:
dab246
2021-10-06 16:58:19 +07:00
committed by Dat H. Pham
parent 99d2707c55
commit 1350f96f06
4 changed files with 56 additions and 74 deletions
@@ -40,13 +40,13 @@ class AppBarDestinationPickerBuilder {
}
Widget _buildBackButton() {
return ButtonBuilder(_imagePaths.icComposerClose)
.padding(5)
.size(30)
.onPressActionClick(() {
if (_onCloseActionClick != null) {
_onCloseActionClick!();
}})
return (ButtonBuilder(_imagePaths.icComposerClose)
..padding(5)
..size(30)
..onPressActionClick(() {
if (_onCloseActionClick != null) {
_onCloseActionClick!();
}}))
.build();
}