Skip to content

Commit

Permalink
bug: fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
RGLie committed Mar 27, 2024
1 parent 5ec051b commit 4738034
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions lib/pages/people_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -60,25 +60,25 @@ class PeoplePage extends StatelessWidget {
];

const Map<String, dynamic> people_info = {
'yumyum' : {
'yumyum': {
'name': '조유민',
},
'platypus' : {
'platypus': {
'name': '오승빈',
},
'star' : {
'star': {
'name': '문동우',
},
'lobe' : {
'lobe': {
'name': '정성엽',
},
'seungho' : {
'seungho': {
'name': '장승호',
},
'soongyu' : {
'soongyu': {
'name': '권순규',
},
'edge' : {
'edge': {
'name': '정재현',
},
};
Expand Down Expand Up @@ -117,7 +117,8 @@ class PeoplePage extends StatelessWidget {
const SizedBox(
width: 4,
),
Text(people[i][j],
Text(
people[i][j],
style: TextStyle(
color: Color(0xFFEBA12A),
fontSize: 15,
Expand All @@ -132,7 +133,8 @@ class PeoplePage extends StatelessWidget {
),
Padding(
padding: const EdgeInsets.only(bottom: 2.0),
child: Text(people_info[people[i][j]]['name'],
child: Text(
people_info[people[i][j]]['name'],
style: TextStyle(
color: Color(0xFFEBA12A).withOpacity(0.4),
fontFamily: 'NanumSquare',
Expand Down

0 comments on commit 4738034

Please sign in to comment.