|
@@ -149,7 +149,7 @@ class ResetPasswordPage extends HookConsumerWidget {
|
|
|
rightWidget: IconButton(
|
|
|
highlightColor: Colors.transparent,
|
|
|
splashColor: Colors.transparent,
|
|
|
- icon: state.pwdVisibility
|
|
|
+ icon: !state.pwdVisibility
|
|
|
? const MyAssetImage(
|
|
|
Assets.authPasswordHide,
|
|
|
width: 22.5,
|
|
@@ -191,7 +191,7 @@ class ResetPasswordPage extends HookConsumerWidget {
|
|
|
rightWidget: IconButton(
|
|
|
highlightColor: Colors.transparent,
|
|
|
splashColor: Colors.transparent,
|
|
|
- icon: state.confirmPwdVisibility
|
|
|
+ icon: !state.confirmPwdVisibility
|
|
|
? const MyAssetImage(
|
|
|
Assets.authPasswordHide,
|
|
|
width: 22.5,
|