I'm not sure why this issue happened but when `frontLayer` isn't visible when i pressing on android back button that cause visible `frontLayer` my tested code: ```dart class SplashScreenWidget extends StatefulWidget { /// Default constructor for [SplashScreenWidget]. const SplashScreenWidget({Key? key}) : super(key: key); @override _SplashScreenWidgetState createState() => _SplashScreenWidgetState(); } class _SplashScreenWidgetState extends State<SplashScreenWidget> { @override Widget build(BuildContext context) => MaterialApp( title: 'Backdrop Demo', home: BackdropScaffold( appBar: BackdropAppBar( actions: const <Widget>[ BackdropToggleButton( icon: AnimatedIcons.list_view, ) ], ), backLayer: Center( child: Text("Back Layer"), ), frontLayer: Center( child: Text("Front Layer"), ), ), ); } ``` https://github.com/fluttercommunity/backdrop/assets/6617583/cd31983a-7fb4-494e-be3b-33b372474d3b
I'm not sure why this issue happened but when
frontLayerisn't visible when i pressing on android back button that cause visiblefrontLayermy tested code:
Tf5D05_r.mp4