fix: ssh virt key icon color

This commit is contained in:
lollipopkit
2024-04-06 17:25:06 -06:00
parent 704a93713f
commit c1a729f542

View File

@@ -203,7 +203,9 @@ class _SSHPageState extends State<SSHPage> with AutomaticKeepAliveClientMixin {
: Text(
item.text,
style: TextStyle(
color: selected ? primaryColor : null,
color: selected
? primaryColor
: (_isDark ? Colors.white : Colors.black),
fontSize: 15,
),
);