File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -237,11 +237,6 @@ class _PublicationCardState extends State<PublicationCard> {
237
237
)
238
238
],
239
239
),
240
- Text (
241
- widget.title,
242
- style: TextStyle (fontWeight: FontWeight .bold),
243
- softWrap: true ,
244
- ),
245
240
Text (
246
241
AppLocalizations .of (context)!
247
242
.publishedon (widget.publishedDate! ),
@@ -250,11 +245,15 @@ class _PublicationCardState extends State<PublicationCard> {
250
245
fontSize: 13 ,
251
246
),
252
247
),
253
- SizedBox (height: 5.0 ),
248
+ Text (
249
+ widget.title,
250
+ style: TextStyle (fontWeight: FontWeight .bold),
251
+ softWrap: true ,
252
+ ),
254
253
Text (
255
254
'${getAuthorsNames (widget .authors )}' ,
256
255
style: TextStyle (fontSize: 14 , color: Colors .grey),
257
- maxLines: 4 ,
256
+ maxLines: 1 ,
258
257
overflow: TextOverflow .ellipsis,
259
258
),
260
259
],
You can’t perform that action at this time.
0 commit comments