Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
fix: Text alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
reasje committed Aug 15, 2024
1 parent ac0f580 commit 565073a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/common/components/list/single_line_info_item.dart
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class SingleLineInfoItem extends HookConsumerWidget {
value,
style: FontTheme.of(context).body1.primary(),
softWrap: true,
textAlign: TextAlign.end,
textAlign: TextAlign.start,
),
),
if (valueActionIcon != null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class MessageInfo extends ConsumerWidget {
return Column(
children: [
Row(
mainAxisAlignment: MainAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.start,
children: [
Text(
networkName,
Expand Down

0 comments on commit 565073a

Please sign in to comment.