SMS Screen Modifiaction

This commit is contained in:
2025-10-28 17:59:05 +05:30
parent dd3e94a69e
commit e1c1a58086
4 changed files with 98 additions and 65 deletions

View File

@@ -37,7 +37,7 @@ class _ProfileScreenState extends State<ProfileScreen> {
final storage = getIt<SecureStorage>();
final isEnabled = await storage.read('biometric_enabled');
setState(() {
_isBiometricEnabled = isEnabled == 'true';
_isBiometricEnabled = isEnabled == true;
});
}