Skip to content

Commit

Permalink
Merge branch 'main' into tests-navigation-bar
Browse files Browse the repository at this point in the history
  • Loading branch information
DE7924 committed Nov 13, 2024
2 parents fa7452e + aa7a1e4 commit 7bcad7c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/src/components/navigation bar/navigation_bar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,9 @@ class ZetaNavigationBar extends ZetaStatelessWidget {
border: Border(top: BorderSide(color: colors.borderSubtle)),
),
child: Semantics(
child: child,
child: SafeArea(
child: child,
),
),
);
}
Expand Down Expand Up @@ -259,7 +261,7 @@ class NavigationItem extends ZetaStatelessWidget {

return Material(
color: colors.surfacePrimary,
child: InkWell(
child: InkResponse(
borderRadius: context.rounded ? Zeta.of(context).radius.rounded : Zeta.of(context).radius.none,
onTap: onTap,
hoverColor: colors.surfaceHover,
Expand Down

0 comments on commit 7bcad7c

Please sign in to comment.