mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 17:45:59 +00:00
9e6e573e19
Summary: Continuation on #3959 (started by cancan101). Rebased to latest master, adds support for left system icon, fixes issues mentioned in previous PR. <img width="432" alt="screen shot 2016-09-05 at 13 54 41" src="https://cloud.githubusercontent.com/assets/7275322/18248478/5b7aa25c-7370-11e6-8c51-01a2b7fd1030.png"> Closes https://github.com/facebook/react-native/pull/9742 Differential Revision: D3836850 Pulled By: javache fbshipit-source-id: ef9f6e42211ed18bf5f3dc1eb7a8b1318d939674
42 lines
1.6 KiB
Objective-C
42 lines
1.6 KiB
Objective-C
/**
|
|
* 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.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "RCTComponent.h"
|
|
|
|
@interface RCTNavItem : UIView
|
|
|
|
@property (nonatomic, copy) NSString *title;
|
|
@property (nonatomic, strong) UIImage *titleImage;
|
|
@property (nonatomic, strong) UIImage *leftButtonIcon;
|
|
@property (nonatomic, copy) NSString *leftButtonTitle;
|
|
@property (nonatomic, assign) UIBarButtonSystemItem leftButtonSystemIcon;
|
|
@property (nonatomic, strong) UIImage *rightButtonIcon;
|
|
@property (nonatomic, copy) NSString *rightButtonTitle;
|
|
@property (nonatomic, assign) UIBarButtonSystemItem rightButtonSystemIcon;
|
|
@property (nonatomic, strong) UIImage *backButtonIcon;
|
|
@property (nonatomic, copy) NSString *backButtonTitle;
|
|
@property (nonatomic, assign) BOOL navigationBarHidden;
|
|
@property (nonatomic, assign) BOOL shadowHidden;
|
|
@property (nonatomic, strong) UIColor *tintColor;
|
|
@property (nonatomic, strong) UIColor *barTintColor;
|
|
@property (nonatomic, strong) UIColor *titleTextColor;
|
|
@property (nonatomic, assign) BOOL translucent;
|
|
|
|
@property (nonatomic, readonly) UIImageView *titleImageView;
|
|
@property (nonatomic, readonly) UIBarButtonItem *backButtonItem;
|
|
@property (nonatomic, readonly) UIBarButtonItem *leftButtonItem;
|
|
@property (nonatomic, readonly) UIBarButtonItem *rightButtonItem;
|
|
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onLeftButtonPress;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onRightButtonPress;
|
|
|
|
@end
|