From b95ed5fbb57e2188efbd4c546f1eba165538d47c Mon Sep 17 00:00:00 2001 From: vishnukvmd Date: Mon, 4 Sep 2023 23:28:05 +0530 Subject: [PATCH] Increase font size for progress dialogs --- lib/utils/dialog_util.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/dialog_util.dart b/lib/utils/dialog_util.dart index 355551593..9cf7273fd 100644 --- a/lib/utils/dialog_util.dart +++ b/lib/utils/dialog_util.dart @@ -224,7 +224,7 @@ ProgressDialog createProgressDialog( ); dialog.style( message: message, - messageTextStyle: Theme.of(context).textTheme.bodySmall, + messageTextStyle: Theme.of(context).textTheme.labelMedium, backgroundColor: Theme.of(context).dialogTheme.backgroundColor, progressWidget: const EnteLoadingWidget(), borderRadius: 10,