@@ -42,14 +59,14 @@ class SongComment extends StatelessWidget {
crossAxisAlignment:CrossAxisAlignment.start,
children:[
Text(
comment.author.name,
widget.comment.author.name,
style:Theme.of(context)
.textTheme
.bodyLarge
?.copyWith(fontWeight:FontWeight.bold),
),
Text(
'${comment.timeStamp.hour.toString().padLeft(2, '0')}:${comment.timeStamp.minute.toString().padLeft(2, '0')} on ${comment.timeStamp.day}/${comment.timeStamp.month}/${comment.timeStamp.year}',
'${widget.comment.timeStamp.hour.toString().padLeft(2, '0')}:${widget.comment.timeStamp.minute.toString().padLeft(2, '0')} on ${widget.comment.timeStamp.day}/${widget.comment.timeStamp.month}/${widget.comment.timeStamp.year}',
style:Theme.of(context)
.textTheme
.bodySmall
@@ -60,21 +77,21 @@ class SongComment extends StatelessWidget {