-
Notifications
You must be signed in to change notification settings - Fork 25
Description
Bug Description
When scrolling down the page, the AdaptiveBottomNavigationBar automatically collapses (shrinks) without explicit control from the developer. In some cases, when scrolling back up, it returns to its normal size, but this behavior is inconsistent and unpredictable.
This automatic resize behavior can negatively affect user experience and layout stability, especially in screens where a fixed bottom navigation bar is expected.
Steps to Reproduce
1. Open a page that uses AdaptiveBottomNavigationBar.
2. Scroll the page downward.
3. Observe that the bottom navigation bar shrinks automatically.
4. Scroll back upward.
5. Notice that sometimes the navigation bar expands back to its normal size, and sometimes it does not.
Expected Behavior
The AdaptiveBottomNavigationBar should remain at a fixed size during scrolling unless explicitly configured otherwise by the developer.
Ideally, there should be an option (e.g. a boolean flag) to disable this automatic shrinking behavior completely.
Actual Behavior
The bottom navigation bar automatically shrinks when scrolling down and may or may not expand again when scrolling up, without any direct control or configuration option.
Additional Context
It would be very helpful to have a configuration option such as:
disableAutoResize: true
or
shrinkOnScroll: false
This would give developers full control over whether the navigation bar should react to scroll events or remain fixed.