Skip to content

Commit

Permalink
Fix: 누락된 플로팅 액션 버튼 & 셔플 버튼 #62
Browse files Browse the repository at this point in the history
  • Loading branch information
lhaerim committed Dec 26, 2024
1 parent 6fff7c8 commit de740a1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions outfoot/lib/screens/checkpage_image.dart
Original file line number Diff line number Diff line change
Expand Up @@ -223,14 +223,37 @@ class _CheckPageImageState extends State<CheckPageImage> {
color: mainBrownColor,
);
}

},

),

),
Positioned(
top: 60.h,
left: 300.w,
child: GestureDetector(
onTap: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => CheckPageFoot(),
),
);
},
child: SvgPicture.asset(
'assets/shuffle_icon.svg',
width: 24.w,
height: 24.h,
),
),
),
],
),
],
),
),

bottomNavigationBar: CustomBottomNavigationBar(selectedIndex: 1),
);
}
Expand Down

0 comments on commit de740a1

Please sign in to comment.