diff --git a/lib/views/menu_screen/menu_screen_left.dart b/lib/views/menu_screen/menu_screen_left.dart index 30d43e3..bbb0b73 100644 --- a/lib/views/menu_screen/menu_screen_left.dart +++ b/lib/views/menu_screen/menu_screen_left.dart @@ -33,40 +33,43 @@ class MenuScreenLeftBody extends StatelessWidget { @override Widget build(BuildContext context) { - return ListView( - physics: const AlwaysScrollableScrollPhysics( - parent: BouncingScrollPhysics(), - ), - children: [ - const Padding( - padding: EdgeInsets.only( - top: 72, - bottom: 48, - left: 24, - right: 24, - ), - child: Header(), + return Scaffold( + backgroundColor: Colors.transparent, + body: ListView( + physics: const AlwaysScrollableScrollPhysics( + parent: BouncingScrollPhysics(), ), - const Padding( - padding: EdgeInsets.only( - bottom: 24, - left: 24, - right: 24, + children: [ + const Padding( + padding: EdgeInsets.only( + top: 72, + bottom: 48, + left: 24, + right: 24, + ), + child: Header(), + ), + const Padding( + padding: EdgeInsets.only( + bottom: 24, + left: 24, + right: 24, + ), + child: Menu(), ), - child: Menu(), - ), - /// 插画 - BlockSemanticsToDrawerClosed( - child: Container( - padding: const EdgeInsets.only(left: 24, bottom: 24), - child: Image.asset( - 'assets/images/woolly/woolly-comet-2.png', - width: 240, + /// 插画 + BlockSemanticsToDrawerClosed( + child: Container( + padding: const EdgeInsets.only(left: 24, bottom: 24), + child: Image.asset( + 'assets/images/woolly/woolly-comet-2.png', + width: 240, + ), ), ), - ), - ], + ], + ), ); } }