TF-778 Fix text is cut after - symbol in web
This commit is contained in:
committed by
Dat H. Pham
parent
94cca20308
commit
2d744d5d1b
@@ -145,9 +145,11 @@ class EmailTileBuilder {
|
|||||||
fontWeight: _buildFontForReadEmail())).build()
|
fontWeight: _buildFontForReadEmail())).build()
|
||||||
: Text(
|
: Text(
|
||||||
_getInformationSender(),
|
_getInformationSender(),
|
||||||
|
softWrap: false,
|
||||||
maxLines: 1,
|
maxLines: 1,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 15,
|
fontSize: 15,
|
||||||
|
overflow: TextOverflow.fade,
|
||||||
color: _buildTextColorForReadEmail(),
|
color: _buildTextColorForReadEmail(),
|
||||||
fontWeight: _buildFontForReadEmail()))
|
fontWeight: _buildFontForReadEmail()))
|
||||||
),
|
),
|
||||||
@@ -316,9 +318,11 @@ class EmailTileBuilder {
|
|||||||
fontWeight: _buildFontForReadEmail())).build()
|
fontWeight: _buildFontForReadEmail())).build()
|
||||||
: Text(
|
: Text(
|
||||||
_getInformationSender(),
|
_getInformationSender(),
|
||||||
|
softWrap: false,
|
||||||
maxLines: 1,
|
maxLines: 1,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 15,
|
fontSize: 15,
|
||||||
|
overflow: TextOverflow.fade,
|
||||||
color: _buildTextColorForReadEmail(),
|
color: _buildTextColorForReadEmail(),
|
||||||
fontWeight: _buildFontForReadEmail()))
|
fontWeight: _buildFontForReadEmail()))
|
||||||
),
|
),
|
||||||
@@ -500,9 +504,11 @@ class EmailTileBuilder {
|
|||||||
backgroundColor: AppColor.bgWordSearch)).build()
|
backgroundColor: AppColor.bgWordSearch)).build()
|
||||||
: Text(_getInformationSender(),
|
: Text(_getInformationSender(),
|
||||||
maxLines: 1,
|
maxLines: 1,
|
||||||
|
softWrap: false,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 15,
|
fontSize: 15,
|
||||||
color: _buildTextColorForReadEmail(),
|
color: _buildTextColorForReadEmail(),
|
||||||
|
overflow: TextOverflow.fade,
|
||||||
fontWeight: _buildFontForReadEmail())),
|
fontWeight: _buildFontForReadEmail())),
|
||||||
),
|
),
|
||||||
const SizedBox(width: 24),
|
const SizedBox(width: 24),
|
||||||
|
|||||||
Reference in New Issue
Block a user