Skip to content

Commit ebf62c4

Browse files
committed
fix:some color fault
1 parent 0040b23 commit ebf62c4

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

lib/main.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ class MyApp extends StatelessWidget {
2323
colorScheme: ColorScheme.fromSeed(
2424
seedColor: Colors.blueAccent,
2525
brightness: Brightness.light,
26-
2726
),
2827
useMaterial3: true,
2928
),

lib/main_page.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,19 +220,19 @@ class _MainPageState extends State<MainPage> {
220220
return ListTile(
221221
leading: Icon(
222222
_getConnectionIcon(connection.type),
223-
color: isConnectingThis ? Colors.blue : Colors.grey,
223+
color: isConnectingThis ? Colors.grey : Colors.grey,
224224
),
225225
title: Text(
226226
connection.name,
227227
style: TextStyle(
228228
fontWeight: FontWeight.bold,
229-
color: isConnectingThis ? Colors.blue : null,
229+
color: isConnectingThis ? Colors.grey : null,
230230
),
231231
),
232232
subtitle: Text(
233233
'${connection.host}:${connection.port} - ${connection.type.displayName}',
234234
style: TextStyle(
235-
color: isConnectingThis ? Colors.blue : Colors.grey,
235+
color: isConnectingThis ? Colors.grey : Colors.grey,
236236
),
237237
),
238238
trailing: Container(

0 commit comments

Comments
 (0)