From d7ccf284fa7812e4dc703c21feedefebbdc124c1 Mon Sep 17 00:00:00 2001 From: Ekjot <43255916+ekjotmultani@users.noreply.github.com> Date: Thu, 27 Feb 2025 12:51:18 -0800 Subject: [PATCH 1/2] fixed skip button in verify user dialog to be more visible in dark mode --- .../amplify_authenticator/lib/src/widgets/button.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/authenticator/amplify_authenticator/lib/src/widgets/button.dart b/packages/authenticator/amplify_authenticator/lib/src/widgets/button.dart index ccd43114da..850f778afc 100644 --- a/packages/authenticator/amplify_authenticator/lib/src/widgets/button.dart +++ b/packages/authenticator/amplify_authenticator/lib/src/widgets/button.dart @@ -583,9 +583,8 @@ class SkipVerifyUserButton extends StatelessAuthenticatorComponent { onPressed: state.skipVerifyUser, child: Text( stringResolver.buttons.skip(context), - style: TextStyle( + style: const TextStyle( fontSize: AuthenticatorButtonConstants.fontSize, - color: Theme.of(context).primaryColor, ), ), ); From 0fdb91b5f39cadf582a69b7ac89abdf962012566 Mon Sep 17 00:00:00 2001 From: Ekjot <43255916+ekjotmultani@users.noreply.github.com> Date: Thu, 27 Feb 2025 13:18:36 -0800 Subject: [PATCH 2/2] ignored html deprecation --- .../storage/amplify_storage_s3/example/analysis_options.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/storage/amplify_storage_s3/example/analysis_options.yaml b/packages/storage/amplify_storage_s3/example/analysis_options.yaml index 49f9f5a9a4..8ac368e569 100644 --- a/packages/storage/amplify_storage_s3/example/analysis_options.yaml +++ b/packages/storage/amplify_storage_s3/example/analysis_options.yaml @@ -1 +1,4 @@ include: package:amplify_lints/app.yaml +analyzer: + errors: + deprecated_member_use: ignore