[Feedback Requested] Cross-platform Adaptation for Bottom Navigation Bars (Tab Bars) #94
Replies: 2 comments 23 replies
-
I haven't used iOS for a while, so correct me if I'm wrong, but isn't their AppBar more often than not (like on App Store app) translucent to the content behind while Material usually is not? |
Beta Was this translation helpful? Give feedback.
-
Hi @leighajarett, I tried the suggestion in this guide to adapt Veggie Seasons' bottom navigation bar. While it's not hard to make it work, I found a few issues. First, it's difficult to share Second, a very minor issue – the recommendation above the code snippet is to use Last, the initial recommendation gives me the impression that I should try to customize the Material |
Beta Was this translation helpful? Give feedback.
-
What is a navigation bar?
A navigation bar offers a persistent and convenient way to switch between primary destinations in an app. It is pinned to the bottom of the screen, and usually provides access to 3-5 destinations. Each destination is represented by an icon and optional text label.
Platform differences
On the latest version of Android, app bars follow the design guidelines defined in Material 3. On iOS, an equivalent component is defined in Apple’s Human Interface Guidelines called tab bars.
Elevation: Level 2
Content under: Transparent with blur effect
Size: 24X24
Size: varies, most frequently 25x25. See documentation for details.
The Flutter framework has two different widgets for displaying bottom navigation bars:
Adaptation recommendation
If you're using the default Material styling for your navigation bar on Android, we recommend that the following properties also feel native on iOS.
Rationale and exception
Matching iOS styling can help your Flutter app feel more natural to iOS users. However, many developers chose to implement more custom tab bars, that feature customized animations and / or custom icons. For example, the Twitter mobile app:
Developers can find customized navigation bas on pub.dev, for example in the custom_navigation_bar_package.
Example code
All the properties listed above are not currently able to be modified directly from Material's
NavigationBar
widget. Therefore, we recommend adapting to platform-specific navigation bars.To implement platform-specific navigation bars, you can use Flutter’s
NavigationBar
widget on Android and theCupertinoTabBar
widget on iOS. Below is a code snippet you can adapt to show a platform-specific navigation bars.Beta Was this translation helpful? Give feedback.
All reactions