2015-03-23 15:07:33 -07:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-16 18:24:55 -08:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-03-23 15:07:33 -07:00
|
|
|
*/
|
2015-03-06 09:54:10 -08:00
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@interface RCTTabBar : UIView
|
|
|
|
|
2016-05-03 05:39:21 -07:00
|
|
|
@property (nonatomic, strong) UIColor *unselectedTintColor;
|
2015-05-26 16:40:56 -07:00
|
|
|
@property (nonatomic, strong) UIColor *tintColor;
|
|
|
|
@property (nonatomic, strong) UIColor *barTintColor;
|
2015-07-14 08:05:08 -07:00
|
|
|
@property (nonatomic, assign) BOOL translucent;
|
2017-08-25 00:03:17 -07:00
|
|
|
#if !TARGET_OS_TV
|
|
|
|
@property (nonatomic, assign) UIBarStyle barStyle;
|
|
|
|
#endif
|
2015-05-26 16:40:56 -07:00
|
|
|
|
2017-12-18 11:43:35 -08:00
|
|
|
- (void)uiManagerDidPerformMounting;
|
|
|
|
|
2015-03-06 09:54:10 -08:00
|
|
|
@end
|