Skip to content

Commit

Permalink
Merge pull request #174 from sparcs-kaist/bug@scroll-view-people-page
Browse files Browse the repository at this point in the history
Add SingleChildScrollView in People Page
  • Loading branch information
RGLie authored Mar 29, 2024
2 parents 9e0c161 + e6a4eef commit 9d99f22
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 9d99f22

Please sign in to comment.