Skip to content

Commit

Permalink
chore: mainBottomBar 높이수정
Browse files Browse the repository at this point in the history
  • Loading branch information
nain93 committed Aug 5, 2023
1 parent 43f6945 commit 7894d08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/navigations/main_bottom_tab.dart
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,9 @@ class MainBottomTab extends HookConsumerWidget {
],
),
child: Container(
height: MediaQuery.of(context).viewInsets.bottom > 0
? 0
: const BottomAppBar().height,
decoration: const BoxDecoration(
boxShadow: [
BoxShadow(
Expand All @@ -172,9 +175,6 @@ class MainBottomTab extends HookConsumerWidget {
],
),
child: BottomAppBar(
height: MediaQuery.of(context).viewInsets.bottom > 0
? 0
: const BottomAppBar().height,
shape: const CircularNotchedRectangle(),
notchMargin: 5,
padding: EdgeInsets.only(
Expand Down

0 comments on commit 7894d08

Please sign in to comment.