You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Having an indicator on the tab bar to show which view the user is currently on would improve the user experience by providing clear navigation feedback. This feature is especially useful when users are scrolling through content, as it allows them to easily identify their active view at a glance. It aligns with usability best practices, similar to platforms like Velog.
Proposed Solution
Implement an indicator on the tab bar that highlights the active view. This can be achieved by adding a visual cue, such as a color change, underline, or bold text, to the tab bar item corresponding to the active view. Additionally, the tab should update based on the user's scroll position, dynamically highlighting the section they are viewing without needing to click the tab.
Expected Behavior
The tab bar should visually indicate the active view by displaying a unique style (e.g., color change, underline, bold text) for the active tab. The active state should dynamically update as the user scrolls through different sections of the page. Users should be able to recognize their position on the page via the tab bar, improving navigation and reducing potential confusion.
Code Example
Below is an example implementation using React. This version includes both click-based navigation and scroll-based updates to the tab's active state:
The following example layout works with the code above, creating sections for each tab that can be navigated to by either scrolling or clicking on the tabs:
Active tab is highlighted with a color change or underline
ETC
This feature allows users to identify their active view both through click-based navigation and automatic updates as they scroll through the content, providing a seamless and intuitive user experience.
The text was updated successfully, but these errors were encountered:
✅Feature Request
Motivation
Having an indicator on the tab bar to show which view the user is currently on would improve the user experience by providing clear navigation feedback. This feature is especially useful when users are scrolling through content, as it allows them to easily identify their active view at a glance. It aligns with usability best practices, similar to platforms like Velog.
Proposed Solution
Implement an indicator on the tab bar that highlights the active view. This can be achieved by adding a visual cue, such as a color change, underline, or bold text, to the tab bar item corresponding to the active view. Additionally, the tab should update based on the user's scroll position, dynamically highlighting the section they are viewing without needing to click the tab.
Expected Behavior
The tab bar should visually indicate the active view by displaying a unique style (e.g., color change, underline, bold text) for the active tab. The active state should dynamically update as the user scrolls through different sections of the page. Users should be able to recognize their position on the page via the tab bar, improving navigation and reducing potential confusion.
Code Example
Below is an example implementation using React. This version includes both click-based navigation and scroll-based updates to the tab's active state:
+ Sections for Scroll Detection
The following example layout works with the code above, creating sections for each tab that can be navigated to by either scrolling or clicking on the tabs:
Example UI
No indication of active view on the tab bar
Active tab is highlighted with a color change or underline
ETC
This feature allows users to identify their active view both through click-based navigation and automatic updates as they scroll through the content, providing a seamless and intuitive user experience.
The text was updated successfully, but these errors were encountered: