fix: eliminate cross-app consistency drift

This commit is contained in:
edde746
2026-07-13 23:13:53 +02:00
parent ec249d2ed4
commit d5f3e581df
142 changed files with 4751 additions and 1075 deletions
+3 -3
View File
@@ -539,7 +539,7 @@ class _TvPinInputState extends State<_TvPinInput> with ControllerDisposerMixin {
Widget _buildKeyContent(BuildContext context, _PinKey key, Color foreground) {
final icon = key.icon;
if (icon != null) return Icon(icon, color: foreground, size: 30);
if (icon != null) return AppIcon(icon, color: foreground, size: 30);
return FittedBox(
fit: BoxFit.scaleDown,
@@ -678,9 +678,9 @@ class _PinKey {
case _PinKeyType.digit:
return null;
case _PinKeyType.backspace:
return Icons.backspace_outlined;
return Symbols.backspace_rounded;
case _PinKeyType.close:
return Icons.close_rounded;
return Symbols.close_rounded;
}
}
}