File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed
Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -168,6 +168,14 @@ class SettingsScreen extends StatelessWidget {
168168 style: Theme .of (context).textTheme.titleMedium,
169169 ),
170170 ),
171+ ListTile (
172+ leading: const Icon (Icons .radar),
173+ title: const Text ('DISC Pings' ),
174+ trailing: Text (
175+ '${appState .pingStats .discCount }' ,
176+ style: Theme .of (context).textTheme.titleMedium,
177+ ),
178+ ),
171179 ListTile (
172180 leading: const Icon (Icons .check_circle),
173181 title: const Text ('Successful Uploads' ),
Original file line number Diff line number Diff line change @@ -110,6 +110,15 @@ class StatusBar extends StatelessWidget {
110110
111111 const SizedBox (width: 8 ),
112112
113+ // DISC count chip
114+ _buildStatChip (
115+ icon: Icons .radar,
116+ value: '${appState .pingStats .discCount }' ,
117+ color: const Color (0xFF7B68EE ), // DISC purple
118+ ),
119+
120+ const SizedBox (width: 8 ),
121+
113122 // Uploaded count chip
114123 _buildStatChip (
115124 icon: Icons .cloud_done,
You can’t perform that action at this time.
0 commit comments