@@ -254,23 +254,10 @@ class AnalyzingContent extends ConsumerWidget {
254254 Consumer (builder: (context, ref, child) {
255255 final deepScanEnabled =
256256 ref.read (settingsProvider.notifier).isDeepScanEnabled ();
257- if (deepScanEnabled) {
258- return Container (
259- margin: const EdgeInsets .only (bottom: 3.0 ),
260- child: Text (
261- "∞" ,
262- style: TextStyle (
263- color: const Color (0xFFA7A7A7 ),
264- fontSize: 24. sp,
265- fontFamily: 'Lato' ,
266- fontWeight: FontWeight .w400,
267- ),
268- ));
269- }
270257
271258 final flowLineState = ref.watch (flowLineStepProvider);
272259 final currentStep = flowLineState.step;
273- final totalSteps = flowLineState.totalSteps;
260+ final totalSteps = deepScanEnabled ? "∞" : flowLineState.totalSteps;
274261
275262 if (totalSteps == 0 || currentStep == 0 ) {
276263 return Shimmer .fromColors (
@@ -281,16 +268,28 @@ class AnalyzingContent extends ConsumerWidget {
281268 );
282269 }
283270
284- return Text (
285- "$currentStep /$totalSteps " ,
286- textAlign: TextAlign .start,
287- style: TextStyle (
288- color: const Color (0xFFA7A7A7 ),
289- fontSize: 16. sp,
290- fontFamily: 'Lato' ,
291- fontWeight: FontWeight .w300,
271+ return Row (children: [
272+ Text (
273+ "$currentStep /" ,
274+ textAlign: TextAlign .start,
275+ style: TextStyle (
276+ color: const Color (0xFFA7A7A7 ),
277+ fontSize: 16. sp,
278+ fontFamily: 'Lato' ,
279+ fontWeight: FontWeight .w300,
280+ ),
292281 ),
293- );
282+ Text (
283+ "$totalSteps " ,
284+ textAlign: TextAlign .start,
285+ style: TextStyle (
286+ color: const Color (0xFFA7A7A7 ),
287+ fontSize: deepScanEnabled ? 24. sp : 16. sp,
288+ fontFamily: 'Lato' ,
289+ fontWeight: FontWeight .w400,
290+ ),
291+ ),
292+ ]);
294293 }),
295294 SizedBox (width: 10. w),
296295 AppIcons .arrowLeft (width: 14. w, height: 14. h),
0 commit comments