From e6a4eef690684d319d5df8875458983e3a7243f4 Mon Sep 17 00:00:00 2001 From: Seungbin Oh Date: Fri, 29 Mar 2024 18:25:09 +0900 Subject: [PATCH] bug: add scrollview in People Page --- lib/pages/people_page.dart | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/lib/pages/people_page.dart b/lib/pages/people_page.dart index 62850bd7..2cabae22 100644 --- a/lib/pages/people_page.dart +++ b/lib/pages/people_page.dart @@ -15,21 +15,23 @@ class PeoplePage extends StatelessWidget { middle: Text('title.credit'.tr(), style: titleBold), body: ColoredBox( color: OTLColor.grayF, - child: Padding( - padding: EdgeInsets.all(16.0), - child: Column( - crossAxisAlignment: CrossAxisAlignment.center, - children: [ - _buildContainer('2023.03 ~'), - ..._get202303(), - const SizedBox(height: 32.0), - _buildContainer('2020.03 ~ 2023.02'), - const SizedBox(height: 12.0), - Text( - 'common.coming'.tr(), - style: bodyRegular.copyWith(color: OTLColor.grayA), - ), - ], + child: SingleChildScrollView( + child: Padding( + padding: EdgeInsets.all(16.0), + child: Column( + crossAxisAlignment: CrossAxisAlignment.center, + children: [ + _buildContainer('2023.03 ~'), + ..._get202303(), + const SizedBox(height: 32.0), + _buildContainer('2020.03 ~ 2023.02'), + const SizedBox(height: 12.0), + Text( + 'common.coming'.tr(), + style: bodyRegular.copyWith(color: OTLColor.grayA), + ), + ], + ), ), ), ),