Skip to content

Commit 207737f

Browse files
committed
[style] 커피챗 종료 버튼 디자인 수정 #380
1 parent 8a9d9ca commit 207737f

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

frontend/lib/screen/matching_screen.dart

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ class _MatchingWidgetState extends State<Matching> {
128128
padding: const EdgeInsets.only(top: 80), // 버튼 주위의 패딩 설정
129129
child: SizedBox(
130130
width: 350, // 버튼의 너비 설정
131-
height: 80, // 버튼의 높이 설정
131+
height: 70, // 버튼의 높이 설정
132132
child: ElevatedButton(
133133
onPressed: () async {
134134
showDialog(
@@ -157,16 +157,18 @@ class _MatchingWidgetState extends State<Matching> {
157157
},
158158
style: ElevatedButton.styleFrom(
159159
padding: const EdgeInsets.symmetric(
160-
vertical: 15, horizontal: 20), // 버튼의 내부 패딩 설정
160+
vertical: 10, horizontal: 20), // 버튼의 내부 패딩 설정
161161
shape: RoundedRectangleBorder(
162-
borderRadius: BorderRadius.circular(15)), // 버튼의 모양 설정
163-
backgroundColor:
164-
const Color.fromRGBO(75, 30, 8, 1.0), // 버튼의 배경색 설정
162+
borderRadius: BorderRadius.circular(15),
163+
), // 버튼의 모양 설정
164+
backgroundColor: const Color(0xFF371D10), // 버튼의 배경색 설정
165165
),
166166
child: const Text(
167167
'커피챗 종료',
168168
style: TextStyle(
169-
fontSize: 25, color: Colors.white), // 버튼 텍스트의 스타일 설정
169+
fontSize: 20,
170+
color: Colors.white,
171+
), // 버튼 텍스트의 스타일 설정
170172
),
171173
),
172174
),

0 commit comments

Comments
 (0)