Skip to content

Commit

Permalink
Merge branch 'develop' into Sang/download/download_multipart
Browse files Browse the repository at this point in the history
  • Loading branch information
ppupha committed Feb 22, 2024
2 parents ce412af + 8a1d37a commit d179a1f
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 12 deletions.
2 changes: 1 addition & 1 deletion assets
2 changes: 1 addition & 1 deletion ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ platform :ios do
auth_token: ENV["SENTRY_AUTH"],
org_slug: 'bitmark-inc',
project_slug: 'autonomy-client-flutter',
dsym_path: './ipas/Runner-Inhouse.app.dSYM.zip'
dsym_path: './ipas/Runner Inhouse.app.dSYM.zip'
)

sentry_finalize_release(
Expand Down
Binary file not shown.
Binary file not shown.
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 d179a1f

Please sign in to comment.