Skip to content

Commit

Permalink
Closes #166 shapeBorder need to be more customisable
Browse files Browse the repository at this point in the history
  • Loading branch information
vatsaltanna committed Nov 24, 2021
1 parent 11bdb52 commit 31712aa
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -486,25 +486,24 @@ class MailTile extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Text(
mail.sender,
mail.sender,overflow: TextOverflow.ellipsis,
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontWeight: mail.isUnread
? FontWeight.bold
: FontWeight.normal,
fontWeight:
mail.isUnread ? FontWeight.bold : FontWeight.normal,
fontSize: 17,
),
),
Text(
mail.sub,
mail.sub,overflow: TextOverflow.ellipsis,
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontWeight: FontWeight.normal,
fontSize: 16,
),
),
Text(
mail.msg,
mail.msg,overflow: TextOverflow.ellipsis,
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontWeight: FontWeight.normal,
Expand Down

0 comments on commit 31712aa

Please sign in to comment.