Skip to content

Commit

Permalink
fix: transaction failed message, correct log, text overflow. (#1535)
Browse files Browse the repository at this point in the history
* fix(log): correct log

* fix style

* update assset
  • Loading branch information
ppupha authored Feb 21, 2024
1 parent 7b843f2 commit 8a1d37a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion assets
Original file line number Diff line number Diff line change
Expand Up @@ -380,13 +380,16 @@ class _SendArtworkReviewPageState extends State<SendArtworkReviewPage> {
overflow: TextOverflow.ellipsis,
),
),
GestureDetector(
onTap: onValueTap,
child: Text(
content,
style: theme.textTheme.ppMori400Black14.copyWith(
decoration:
(onValueTap != null) ? TextDecoration.underline : null),
Expanded(
child: GestureDetector(
onTap: onValueTap,
child: Text(
content,
style: theme.textTheme.ppMori400Black14.copyWith(
decoration:
(onValueTap != null) ? TextDecoration.underline : null),
overflow: TextOverflow.ellipsis,
),
),
)
],
Expand Down
6 changes: 3 additions & 3 deletions lib/util/ui_helper.dart
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class UIHelper {
EdgeInsets? padding,
EdgeInsets? paddingTitle,
}) async {
log.info('[UIHelper] showInfoDialog: $title');
log.info('[UIHelper] showDialog: $title');
currentDialogTitle = title;
final theme = Theme.of(context);

Expand Down Expand Up @@ -569,7 +569,7 @@ class UIHelper {
Function? onAction,
Widget? descriptionWidget,
}) async {
log.info('[UIHelper] showInfoDialog: $title, $description');
log.info('[UIHelper] showMessageAction: $title, $description');
final theme = Theme.of(context);

if (autoDismissAfter > 0) {
Expand Down Expand Up @@ -623,7 +623,7 @@ class UIHelper {
Function? onAction,
Widget? descriptionWidget,
}) async {
log.info('[UIHelper] showInfoDialog: $title, $description');
log.info('[UIHelper] showMessageActionNew: $title, $description');
final theme = Theme.of(context);

if (autoDismissAfter > 0) {
Expand Down

0 comments on commit 8a1d37a

Please sign in to comment.