Skip to content

Commit

Permalink
fix(layout): fix home page layout overflow
Browse files Browse the repository at this point in the history
Closes #69
  • Loading branch information
ZhuJHua committed Dec 11, 2024
1 parent 7dfb215 commit 4ad72a5
Showing 1 changed file with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,10 @@ class LargeDiaryCardComponent extends StatelessWidget with BasicCardLogic {
maxLines: getMaxLines(diary.contentText),
style: textStyle.bodyMedium,
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
DateFormat.yMMMd().add_Hms().format(diary.time),
style: textStyle.labelSmall,
),
],
Text(
DateFormat.yMMMd().add_Hms().format(diary.time),
style: textStyle.labelSmall,
overflow: TextOverflow.ellipsis,
)
],
),
Expand Down

0 comments on commit 4ad72a5

Please # to comment.