Advertisement
Guest User

Untitled

a guest
May 20th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.32 KB | None | 0 0
  1. Widget _buildVote(Voti voto) {
  2.       return AutoSizeText(
  3.         '${voto.vote}',
  4.         style: TextStyle(
  5.             fontSize: 18.0,
  6.             color: voto.value < 6.0 ? Colors.red[600] : null,
  7.             fontWeight: FontWeight.w400),
  8.         textAlign: TextAlign.center,
  9.         maxLines: 1,
  10.       );
  11.  
  12.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement