Skip to content

Commit

Permalink
[#61]Fix: notification 수정2
Browse files Browse the repository at this point in the history
  • Loading branch information
seojinJeon committed Jan 11, 2024
1 parent 0371791 commit 921ae4c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions frontend/lib/components/notification.dart
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ class _NotificationPageState extends State<NotificationPage> {
child: Column(
children: [
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
buildButton(
0,
Expand All @@ -100,6 +101,7 @@ class _NotificationPageState extends State<NotificationPage> {
],
),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
buildButton(
3,
Expand Down Expand Up @@ -236,9 +238,8 @@ class _NotificationPageState extends State<NotificationPage> {
style: ElevatedButton.styleFrom(
primary: isSelected ? kPrimaryColor : Colors.white,
onPrimary: isSelected ? Colors.white : kPrimaryColor,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(50),
),
shape: CircleBorder(), // 여기를 수정하여 원 모양으로 만듭니다.
minimumSize: Size(100, 100), // 크기 조절을 통해 원의 크기를 조절합니다.
),
child: Text(
label,
Expand Down

0 comments on commit 921ae4c

Please # to comment.