fix: ssh page icon color

This commit is contained in:
lollipopkit
2024-04-10 20:41:00 +08:00
parent a38cc9a1ee
commit 11956aee00

View File

@@ -199,7 +199,11 @@ class _SSHPageState extends State<SSHPage> with AutomaticKeepAliveClientMixin {
} }
final child = item.icon != null final child = item.icon != null
? Icon(item.icon, size: 17) ? Icon(
item.icon,
size: 17,
color: _isDark ? Colors.white : Colors.black,
)
: Text( : Text(
item.text, item.text,
style: TextStyle( style: TextStyle(