feat: mask unfocused digits in TV PIN input

This commit is contained in:
edde746
2026-03-15 14:18:25 +01:00
parent 45726a57ce
commit a5629c54f6
+1 -1
View File
@@ -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