From a5629c54f6d8ac428e7ec73a336a676ca527f1c8 Mon Sep 17 00:00:00 2001 From: edde746 <86283021+edde746@users.noreply.github.com> Date: Sun, 15 Mar 2026 14:18:25 +0100 Subject: [PATCH] feat: mask unfocused digits in TV PIN input --- lib/screens/profile/pin_entry_dialog.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/screens/profile/pin_entry_dialog.dart b/lib/screens/profile/pin_entry_dialog.dart index e10e3c89..90c06d23 100644 --- a/lib/screens/profile/pin_entry_dialog.dart +++ b/lib/screens/profile/pin_entry_dialog.dart @@ -497,7 +497,7 @@ class _DigitBox extends StatelessWidget { color: isActive ? focusColor.withValues(alpha: 0.08) : Colors.transparent, ), child: Text( - digit != null ? digit.toString() : '–', + digit != null ? (isActive ? digit.toString() : '•') : '–', style: theme.textTheme.headlineSmall?.copyWith( fontWeight: FontWeight.bold, color: digit != null