From b2e71e3bcc3f61f32e868e3f5ddd4636702c8f35 Mon Sep 17 00:00:00 2001 From: godeka Date: Wed, 29 May 2024 23:27:39 +0900 Subject: [PATCH] =?UTF-8?q?[style]=20=EC=95=8C=EB=A6=BC=20=EB=AA=A8?= =?UTF-8?q?=EC=95=84=EB=B3=B4=EA=B8=B0=20=EB=B2=84=ED=8A=BC=20=EB=94=94?= =?UTF-8?q?=EC=9E=90=EC=9D=B8=20=EB=B0=8F=20=EC=9C=84=EC=B9=98=20=EC=88=98?= =?UTF-8?q?=EC=A0=95=20#380?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/lib/screen/map_place.dart | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/frontend/lib/screen/map_place.dart b/frontend/lib/screen/map_place.dart index 1793b77181..442d6de706 100644 --- a/frontend/lib/screen/map_place.dart +++ b/frontend/lib/screen/map_place.dart @@ -386,20 +386,26 @@ class _GoogleMapWidgetState extends State { ), ), Positioned( - top: 80, - right: 10, + top: 50, + right: 20, child: ElevatedButton( onPressed: () { Navigator.push(context, MaterialPageRoute(builder: (context) => const AlarmList())); }, style: ElevatedButton.styleFrom( - backgroundColor: Colors.deepOrange, // 배경 색상 설정 + minimumSize: const Size(50, 50), + backgroundColor: Colors.white, // 배경 색상 설정 + elevation: 0, shape: const CircleBorder(), // 원 모양의 버튼을 만들기 위해 사용 padding: const EdgeInsets.all(10), // 버튼의 패딩 설정 + side: const BorderSide( + color: Colors.grey, + width: 0.5, + ), ), - child: const Icon(Icons.add_alert, - color: Colors.white70), // 아이콘과 색상 설정 + child: const Icon(Icons.notifications_outlined, + color: Colors.black), // 아이콘과 색상 설정 ), ), (myCafe.cafeId == null)