diff --git a/lib/widgets/publication_card.dart b/lib/widgets/publication_card.dart index 5146a2f5..4be3cc28 100644 --- a/lib/widgets/publication_card.dart +++ b/lib/widgets/publication_card.dart @@ -237,11 +237,6 @@ class _PublicationCardState extends State { ) ], ), - Text( - widget.title, - style: TextStyle(fontWeight: FontWeight.bold), - softWrap: true, - ), Text( AppLocalizations.of(context)! .publishedon(widget.publishedDate!), @@ -250,11 +245,15 @@ class _PublicationCardState extends State { fontSize: 13, ), ), - SizedBox(height: 5.0), + Text( + widget.title, + style: TextStyle(fontWeight: FontWeight.bold), + softWrap: true, + ), Text( '${getAuthorsNames(widget.authors)}', style: TextStyle(fontSize: 14, color: Colors.grey), - maxLines: 4, + maxLines: 1, overflow: TextOverflow.ellipsis, ), ],