A bottom app bar displays navigation and key actions at the bottom of the screen. Bottom app bars work like navigation bars, but with the additional option to show a floating action button.
Bottom app bars follow a recommended Material Design interaction design pattern for providing primary and secondary actions that are easily accessible. With a bottom app bar users are more easily able to use single-handed touch interaction with an application since actions are displayed close to the bottom of the screen within easy reach of a user's thumb.
The bottom app bar includes a floating action button that is intended to provide users with a primary action. Secondary actions are available on a navigation bar that can be customized with several buttons on the left and right sides of the navigation bar. The primary action floating action button is centered on the bottom app bar by default.
MDCBottomAppBarView should be attached to the bottom of the screen or used in conjunction with an expandable bottom drawer. The MDCBottomAppBarView API includes properties that allow changes to the elevation, position and visibility of the embedded floating action button.
UIBarButtonItems can be added to the navigation bar of the MDCBottomAppBarView. Leading and trailing navigation items will be shown and hidden based on the position of the floating action button.
Transitions between floating action button position, elevation and visibility states are animated by default, but can be disabled if desired.
Add the following to your Podfile:
pod 'MaterialComponents/BottomAppBar'
Then, run the following command:
pod install
To import the component:
import MaterialComponents.MaterialBottomAppBar
#import "MaterialBottomAppBar.h"
MDCBottomAppBarView can be added to a view hierarchy like any UIView. Material Design guidelines recommend always placing the bottom app bar at the bottom of the screen.
MDCBottomAppBarView does not yet have a Material Design color system theming extension. Please indicate interest by commenting on https://github.com/material-components/material-components-ios/issues/7172.
To help ensure your bottom app bar is accessible to as many users as possible, please be sure to review the following recommendations:
-accessibilityLabelSet an appropriate accessibilityLabel to all buttons within the bottom app bar.
bottomAppBar.floatingButton.accessibilityLabel = "Compose" let trailingButton = UIBarButtonItem() trailingButton.accessibilityLabel = "Buy" bottomAppBar.trailingBarButtonItems = [ trailingButton ]
bottomAppBar.floatingButton.accessibilityLabel = @"Compose"; UIBarButtonItem *trailingButton = [[UIBarButtonItem alloc] initWithTitle:nil style:UIBarButtonItemStylePlain target:self action:@selector(didTapTrailing:)]; trailingButton.accessibilityLabel = @"Buy"; [bottomAppBar setTrailingBarButtonItems:@[ trailingButton ]];
-accessibilityHintSet an appropriate accessibilityHint to all buttons within the bottom app bar.
bottomAppBar.floatingButton.accessibilityHint = "Create new email" let trailingButton = UIBarButtonItem() trailingButton.accessibilityHint = "Purchase the item" bottomAppBar.trailingBarButtonItems = [ trailingButton ]
bottomAppBar.floatingButton.accessibilityHint = @"Create new email"; UIBarButtonItem *trailingButton = [[UIBarButtonItem alloc] initWithTitle:nil style:UIBarButtonItemStylePlain target:self action:@selector(didTapTrailing:)]; trailingButton.accessibilityHint = @"Purchase the item"; [bottomAppBar setTrailingBarButtonItems:@[ trailingButton ]];