From 207737fd281fc68c8fafa9cd62be66a2e031c6d3 Mon Sep 17 00:00:00 2001 From: godeka Date: Thu, 30 May 2024 01:27:18 +0900 Subject: [PATCH] =?UTF-8?q?[style]=20=EC=BB=A4=ED=94=BC=EC=B1=97=20?= =?UTF-8?q?=EC=A2=85=EB=A3=8C=20=EB=B2=84=ED=8A=BC=20=EB=94=94=EC=9E=90?= =?UTF-8?q?=EC=9D=B8=20=EC=88=98=EC=A0=95=20#380?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/lib/screen/matching_screen.dart | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/frontend/lib/screen/matching_screen.dart b/frontend/lib/screen/matching_screen.dart index 1a3d02d053..357136a259 100644 --- a/frontend/lib/screen/matching_screen.dart +++ b/frontend/lib/screen/matching_screen.dart @@ -128,7 +128,7 @@ class _MatchingWidgetState extends State { padding: const EdgeInsets.only(top: 80), // 버튼 주위의 패딩 설정 child: SizedBox( width: 350, // 버튼의 너비 설정 - height: 80, // 버튼의 높이 설정 + height: 70, // 버튼의 높이 설정 child: ElevatedButton( onPressed: () async { showDialog( @@ -157,16 +157,18 @@ class _MatchingWidgetState extends State { }, style: ElevatedButton.styleFrom( padding: const EdgeInsets.symmetric( - vertical: 15, horizontal: 20), // 버튼의 내부 패딩 설정 + vertical: 10, horizontal: 20), // 버튼의 내부 패딩 설정 shape: RoundedRectangleBorder( - borderRadius: BorderRadius.circular(15)), // 버튼의 모양 설정 - backgroundColor: - const Color.fromRGBO(75, 30, 8, 1.0), // 버튼의 배경색 설정 + borderRadius: BorderRadius.circular(15), + ), // 버튼의 모양 설정 + backgroundColor: const Color(0xFF371D10), // 버튼의 배경색 설정 ), child: const Text( '커피챗 종료', style: TextStyle( - fontSize: 25, color: Colors.white), // 버튼 텍스트의 스타일 설정 + fontSize: 20, + color: Colors.white, + ), // 버튼 텍스트의 스타일 설정 ), ), ),