-
Notifications
You must be signed in to change notification settings - Fork 185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Safe Area Problem #32
Comments
I'm also running into this problem, is there any workaround for now? |
To clarify: wrapping with a |
Seems to duplicate #19. |
Workaround:
Widget build(BuildContext context) => ClipRect(
clipper: _Clipper(),
child: FancyBottomNavigation(...),
);
class _Clipper extends CustomClipper<Rect> {
@override
Rect getClip(Size size) =>
Rect.fromLTWH(0, -size.height, size.width, size.height * 2);
@override
bool shouldReclip(CustomClipper<Rect> oldClipper) => false;
} |
there is a const double property TEXT_OFF = 3; it's always good to see the code and luck |
Same issue |
Hello ,
How can we arrange this navigatorbar for safe area?
The text was updated successfully, but these errors were encountered: