Skip to content

Commit

Permalink
不必要な空白を削除
Browse files Browse the repository at this point in the history
  • Loading branch information
Npepperlinux committed Nov 30, 2024
1 parent 0a5e780 commit 9918f0f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions lib/view/misskey_page_page/misskey_page_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,11 @@ class MisskeyPagePage extends ConsumerWidget implements AutoRouteWrapper {
mfmText: page.title,
style: Theme.of(context).textTheme.headlineSmall,
),
MfmText(
mfmText: page.summary ?? "",
style: Theme.of(context).textTheme.bodySmall,
),
if(page.summary!=null)
MfmText(
mfmText: page.summary,
style: Theme.of(context).textTheme.bodySmall,
),
Align(
alignment: Alignment.centerRight,
child: Wrap(
Expand Down

0 comments on commit 9918f0f

Please sign in to comment.