Skip to content

Commit

Permalink
bug: add scrollview in People Page
Browse files Browse the repository at this point in the history
  • Loading branch information
sboh1214 committed Mar 29, 2024
1 parent 9e0c161 commit e6a4eef
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions lib/pages/people_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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),
),
],
),
),
),
),
Expand Down

0 comments on commit e6a4eef

Please sign in to comment.