| #import <UIKit/UIKit.h> |
| |
| #import "MDCBottomNavigationBar.h" |
| |
| /** |
| This category is temporary and is meant to allow us to A/B test the performance improvements of |
| using the new shadow vs the old shadow. When such test is finalized, we will delete this file and |
| the internal corresponding static property and move all clients to the new shadow. |
| TODO(b/185206035): Remove category for enabling performant shadow. |
| */ |
| @interface MDCBottomNavigationBar (ShadowsPrivate) |
| |
| /** |
| Returns a bool indicating if the performant shadow is turned on or not. |
| */ |
| + (BOOL)enablePerformantShadow; |
| |
| /** |
| Enables/disables the performant shadow for the bottom navigation bar. |
| */ |
| + (void)setEnablePerformantShadow:(BOOL)enable; |
| |
| @end |