TF-517 Remove tooltip when hover selection icon
This commit is contained in:
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user