Skip to content

Commit

Permalink
Merge pull request #390 from kookmin-sw/#380-edit-design
Browse files Browse the repository at this point in the history
#380 edit design
  • Loading branch information
godeka authored May 29, 2024
2 parents 4cc6c7e + 76dbeac commit 5a1a680
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 23 deletions.
Binary file added frontend/assets/bean_empty.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/assets/bean_filled.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 9 additions & 5 deletions frontend/lib/screen/cafe_details.dart
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,10 @@ class _CafeDetailsState extends State<CafeDetails>
return Scaffold(
appBar: TopAppBar(
titleWidget: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
SizedBox(
width: 280,
width: 240,
child: Text(
widget.cafeName,
style: const TextStyle(
Expand All @@ -171,10 +172,13 @@ class _CafeDetailsState extends State<CafeDetails>
),
(myCafe.cafeId != widget.cafeId)
? Container()
: const Icon(
Icons.circle,
size: 13,
color: Color(0xFFFF6C3E),
: const Padding(
padding: EdgeInsets.only(right: 10),
child: Icon(
Icons.circle,
size: 13,
color: Color(0xFFFF6C3E),
),
),
],
),
Expand Down
36 changes: 18 additions & 18 deletions frontend/lib/screen/coffeechat_rating_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,35 +27,35 @@ class CoffeeChatRating extends StatefulWidget {
class _CoffeeChatRatingState extends State<CoffeeChatRating> {
int selectedIndex = -1;
final List<String> comments = [
'별로였어요.',
'조금 아쉬워요.',
'보통이에요.',
'만족스러워요.',
'별로였어요 :(',
'조금 아쉬워요..',
'보통이에요',
'좋았어요 :)',
'완벽해요!',
];

@override
Widget build(BuildContext context) {
final selectedIndexProvider = Provider.of<SelectedIndexModel>(context);
return Scaffold(
backgroundColor: const Color.fromRGBO(250, 131, 88, 1.0), // 배경색 설정
backgroundColor: const Color(0xFFF09676), // 배경색 설정
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
children: [
Padding(
padding: const EdgeInsets.only(top: 200.0, bottom: 0),
padding: const EdgeInsets.only(top: 150, bottom: 0),
child: Text(
'${widget.partnerNickname}님과의 커피챗\n만족하셨나요?',
'${widget.partnerNickname}님과의 커피챗\n얼마나 만족하셨나요?',
style: const TextStyle(
fontSize: 30,
fontSize: 25,
fontWeight: FontWeight.bold,
),
textAlign: TextAlign.center,
),
),
Padding(
padding: const EdgeInsets.only(top: 100.0), // 이미지와 텍스트 간격 조절
padding: const EdgeInsets.only(top: 100), // 이미지와 텍스트 간격 조절
child: SizedBox(
width: 300, // Stack 너비
height: 80, // Stack 높이
Expand All @@ -74,10 +74,10 @@ class _CoffeeChatRatingState extends State<CoffeeChatRating> {
},
child: Image.asset(
index <= selectedIndex
? 'assets/bean(1).png' //커피콩 채워짐
: 'assets/bean(0).png', //커피콩 비워짐
width: 70,
height: 70,
? 'assets/bean_filled.png' //커피콩 채워짐
: 'assets/bean_empty.png', //커피콩 비워짐
width: 60,
height: 60,
),
),
);
Expand All @@ -86,18 +86,17 @@ class _CoffeeChatRatingState extends State<CoffeeChatRating> {
),
),
Padding(
padding: const EdgeInsets.only(top: 10),
padding: const EdgeInsets.only(top: 30),
child: Text(
selectedIndex >= 0 ? comments[selectedIndex] : '',
style: const TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
),
textAlign: TextAlign.center,
),
),
Padding(
padding: const EdgeInsets.only(top: 150),
padding: const EdgeInsets.only(top: 180),
child: GestureDetector(
onTap: selectedIndex >= 0
? () async {
Expand Down Expand Up @@ -149,9 +148,10 @@ class _CoffeeChatRatingState extends State<CoffeeChatRating> {
}
: null, // selectedIndex가 0 이상인 경우에만 클릭 가능하도록 설정
child: Text(
selectedIndex >= 0 ? '제출하기 ->' : '커피콩점을 매겨주세요.',
selectedIndex >= 0 ? '제출하기 ' : '커피콩점을 매겨주세요.',
style: const TextStyle(
fontSize: 20,
fontSize: 22,
fontWeight: FontWeight.bold,
),
),
),
Expand Down

0 comments on commit 5a1a680

Please sign in to comment.