make positioned direct child of stack in scan (#3313)

malik1004x committed Jun 8, 2026 at 13:06 UTC c7275cb6fe0b50a2fcfdf8e492fe65344307e3b2
1 file changed +6 -5
lib/new-ui/pages/scan_page.dart
+6 -5
@@ -352,11 +352,12 @@ class _ScanPageState extends State<ScanPage> {
352 inactiveColor: Colors.white.withAlpha(102)),
353 ),
354 ),
355 - IgnorePointer(
356 - child: Positioned(
357 - bottom: 120,
358 - left: 0,
359 - right: 0,
355 + Positioned(
356 +bottom: 120, left:0,right:0,
357 + child: IgnorePointer(
358 +
359 +
360 +
361 child: AnimatedOpacity(
362 duration: Duration(milliseconds: 500),
363 opacity: isScanningURQR ? 1 : 0,