Skip to content

Commit

Permalink
[style] 커피챗 종료 버튼 디자인 수정 #380
Browse files Browse the repository at this point in the history
  • Loading branch information
godeka committed May 29, 2024
1 parent 8a9d9ca commit 207737f
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions frontend/lib/screen/matching_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class _MatchingWidgetState extends State<Matching> {
padding: const EdgeInsets.only(top: 80), // 버튼 주위의 패딩 설정
child: SizedBox(
width: 350, // 버튼의 너비 설정
height: 80, // 버튼의 높이 설정
height: 70, // 버튼의 높이 설정
child: ElevatedButton(
onPressed: () async {
showDialog(
Expand Down Expand Up @@ -157,16 +157,18 @@ class _MatchingWidgetState extends State<Matching> {
},
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,
), // 버튼 텍스트의 스타일 설정
),
),
),
Expand Down

0 comments on commit 207737f

Please sign in to comment.