File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff 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 ),
Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments