2015-03-23 15:07:33 -07:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
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;
|
2015-05-26 16:40:56 -07:00
|
|
|
|
2015-03-06 09:54:10 -08:00
|
|
|
@end
|