Toggle Dark/Light/Auto modeToggle Dark/Light/Auto modeToggle Dark/Light/Auto modeBack to homepage
Misc
• Section: Dart
Troubleshooting routing issues
@overrideWidgetbuild(BuildContextcontext){returnPopScope(canPop:false,// Prevent full app exit
onPopInvokedWithResult:(booldidPop,Object?result)async{LOG.w('PinScreen: Back navigation intercepted! didPop: $didPop');LOG.w('PinScreen: Result: $result');LOG.w('PinScreen: Stack trace of back navigation:');LOG.w(StackTrace.current.toString());},child:AppScaffold(image:LeftC(_backgroundImage!),body:_buildFormDetail(),resizeToAvoidBottomInset:false,// Keep false for background image
wrapWithScroll:false,// Keep false for background image
bottomBar:CustomBottomAppBar.withBack(onTap:(){context.gotoByPop();},),),);}