TF-517 Remove tooltip when hover selection icon

This commit is contained in:
dab246
2022-04-27 10:42:09 +07:00
committed by Dat H. Pham
parent 32ef62fba0
commit e794f4343a
@@ -318,11 +318,13 @@ class EmailTileBuilder {
TextStyle? textStyle TextStyle? textStyle
}) { }) {
if (_selectModeAll == SelectMode.ACTIVE) { if (_selectModeAll == SelectMode.ACTIVE) {
return Tooltip( return Padding(
child: Padding( padding: const EdgeInsets.all(12),
padding: const EdgeInsets.all(12), child: SvgPicture.asset(
child: SvgPicture.asset(_presentationEmail.selectMode == SelectMode.ACTIVE ? _imagePaths.icSelected : _imagePaths.icUnSelected, fit: BoxFit.fill)), _presentationEmail.selectMode == SelectMode.ACTIVE
message: AppLocalizations.of(_context).select); ? _imagePaths.icSelected
: _imagePaths.icUnSelected,
fit: BoxFit.fill));
} else { } else {
return Container( return Container(
width: iconSize ?? 56, width: iconSize ?? 56,