mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
Improve comments appearance
This commit is contained in:
parent
64958bb391
commit
9d5762ecfd
@ -58,6 +58,7 @@ class CommentTile extends StatelessWidget {
|
||||
child: comment.hasContent
|
||||
? Text(
|
||||
comment.content,
|
||||
style: TextStyle(color: Colors.black),
|
||||
)
|
||||
: null,
|
||||
),
|
||||
@ -78,22 +79,28 @@ class CommentTile extends StatelessWidget {
|
||||
|
||||
/// Build like button associated to this post
|
||||
Widget _buildLikeButton() {
|
||||
return Align(
|
||||
alignment: AlignmentDirectional.topStart,
|
||||
child: FlatButton(
|
||||
padding: EdgeInsets.only(left: 0.0),
|
||||
onPressed: () => onUpdateLike(comment),
|
||||
child: Row(
|
||||
return Padding(
|
||||
padding: const EdgeInsets.only(top: 4.0, bottom: 4.0),
|
||||
child: Align(
|
||||
alignment: AlignmentDirectional.topStart,
|
||||
child: Column(
|
||||
children: <Widget>[
|
||||
Icon(
|
||||
Icons.thumb_up,
|
||||
color: comment.userLike ? Colors.blue : null,
|
||||
size: 15.0,
|
||||
InkWell(
|
||||
onTap: () => onUpdateLike(comment),
|
||||
child: Row(
|
||||
children: <Widget>[
|
||||
Icon(
|
||||
Icons.thumb_up,
|
||||
color: comment.userLike ? Colors.blue : null,
|
||||
size: 15.0,
|
||||
),
|
||||
SizedBox(
|
||||
width: 8.0,
|
||||
),
|
||||
Text(_likeString),
|
||||
],
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
width: 8.0,
|
||||
),
|
||||
Text(_likeString),
|
||||
],
|
||||
),
|
||||
),
|
||||
|
Loading…
Reference in New Issue
Block a user