blob: 84fd80625986e1f0c509c32ab1dce2bda7131452 [file] [log] [blame]
// Copyright 2017-present the Material Components for iOS authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#import <UIKit/UIKit.h>
#import "MaterialButtons.h"
#import "MDCMinimumOS.h" // IWYU pragma: keep
@class MDCFloatingButton;
/** The elevation of the floating action button. */
typedef NS_ENUM(NSInteger, MDCBottomAppBarFloatingButtonElevation) {
MDCBottomAppBarFloatingButtonElevationPrimary = 0,
MDCBottomAppBarFloatingButtonElevationSecondary = 1
};
/** The position of the floating action button. */
typedef NS_ENUM(NSInteger, MDCBottomAppBarFloatingButtonPosition) {
MDCBottomAppBarFloatingButtonPositionCenter = 0,
MDCBottomAppBarFloatingButtonPositionLeading = 1,
MDCBottomAppBarFloatingButtonPositionTrailing = 2
};
/**
A bottom app bar view with an embedded floating button.
The bottom app bar is a bar docked at the bottom of the screen. A floating action button is
provided for a primary action.
*/
@interface MDCBottomAppBarView : UIView <MDCElevatable, MDCElevationOverriding>
/**
Is the floating button on the bottom bar hidden.
Default is NO.
*/
@property(nonatomic, assign, getter=isFloatingButtonHidden) BOOL floatingButtonHidden;
/**
The elevation of the floating action button.
Default is MDCBottomAppBarFloatingButtonElevationPrimary.
*/
@property(nonatomic, assign) MDCBottomAppBarFloatingButtonElevation floatingButtonElevation;
/**
The position of the floating action button.
Default is MDCBottomAppBarFloatingButtonPositionCenter.
*/
@property(nonatomic, assign) MDCBottomAppBarFloatingButtonPosition floatingButtonPosition;
/**
The floating button on the bottom bar. This button is exposed for customizability.
*/
@property(nonatomic, strong, nonnull, readonly) MDCFloatingButton *floatingButton;
/**
The offset from the center of the floating button to the top edge of the navigation bar
*/
@property(nonatomic, assign) CGFloat floatingButtonVerticalOffset;
/**
Navigation bar items that precede the floating action button. There is no limit to the number of
buttons that can be added, but button bar width overflow is not handled.
*/
@property(nonatomic, copy, nullable) NSArray<UIBarButtonItem *> *leadingBarButtonItems;
/**
Navigation bar items that trail the floating action button. There is no limit to the number of
buttons that can be added, but button bar width overflow is not handled.
*/
@property(nonatomic, copy, nullable) NSArray<UIBarButtonItem *> *trailingBarButtonItems;
/**
Color of the background of the bottom app bar.
*/
@property(nullable, nonatomic, strong) UIColor *barTintColor UI_APPEARANCE_SELECTOR;
/**
The @c tintColor applied to the bar items on the leading side of the BottomAppBar.
*/
@property(nonnull, nonatomic, strong) UIColor *leadingBarItemsTintColor;
/**
The @c tintColor applied to the bar items on the trailing side of the BottomAppBar.
*/
@property(nonnull, nonatomic, strong) UIColor *trailingBarItemsTintColor;
/**
To color the background of the view use -barTintColor instead.
*/
@property(nullable, nonatomic, copy) UIColor *backgroundColor NS_UNAVAILABLE;
/**
The color of the shadow under the bottom app bar.
To set the shadow color of the Floating Action Button, set it directly on the button.
*/
@property(nullable, nonatomic, strong) UIColor *shadowColor UI_APPEARANCE_SELECTOR;
/**
The color of ink that ripples across the buttons.
@note This API only has a visual effect if @c enableRippleBehavior is set to @c YES.
*/
@property(nonnull, nonatomic, copy) UIColor *rippleColor API_DEPRECATED(
"See go/material-ios-touch-response for guidance instead.", ios(12, 12));
/**
By setting this property to @c YES, the Ripple component will be used instead of Ink
to display visual feedback to the user.
@note This property will eventually be enabled by default, deprecated, and then deleted as part
of our migration to Ripple. Learn more at
https://github.com/material-components/material-components-ios/tree/develop/components/Ink#migration-guide-ink-to-ripple
Defaults to NO.
*/
@property(nonatomic, assign) BOOL enableRippleBehavior API_DEPRECATED(
"See go/material-ios-touch-response for guidance instead.", ios(12, 12));
/**
Sets the visibility of the floating action button.
@param animated Enable or disable animation.
*/
- (void)setFloatingButtonHidden:(BOOL)floatingButtonHidden animated:(BOOL)animated;
/**
Sets the elevation of the floating action button. Note, if the set elevation is the same as the
current elevation there is no change in the elevation nor animation.
@param animated Enable or disable animation.
*/
- (void)setFloatingButtonElevation:(MDCBottomAppBarFloatingButtonElevation)floatingButtonElevation
animated:(BOOL)animated;
/**
Sets the position of the floating action button. Note, if the set position is the same as the
current position there is no change in the position nor animation.
@param animated Enable or disable animation.
*/
- (void)setFloatingButtonPosition:(MDCBottomAppBarFloatingButtonPosition)floatingButtonPosition
animated:(BOOL)animated;
/**
A block that is invoked when the @c MDCBottomAppBarView receives a call to @c
traitCollectionDidChange:. The block is called after the call to the superclass.
*/
@property(nonatomic, copy, nullable) void (^traitCollectionDidChangeBlock)
(MDCBottomAppBarView *_Nonnull bottomAppBar,
UITraitCollection *_Nullable previousTraitCollection);
/**
The elevation of the bottom app bar. Defaults to @c MDCShadowElevationBottomAppBar.
*/
@property(nonatomic, assign) MDCShadowElevation elevation;
@end