mirror of
https://github.com/status-im/react-native.git
synced 2025-01-21 23:09:22 +00:00
7060141247
- [ReactNative] Move merge & mergeInto from downstream to vendor | Christopher Chedeau - [ReactNative] Replace all the call sites of mergeInto by Object.assign | Christopher Chedeau - [WIP] Migrated View Managers over to new architecture | Nick Lockwood - [ReactNative] Replace all the call sites of copyProperties by Object.assign | Christopher Chedeau - [ReactNative] Migrate navigator.geolocation to open source | Christopher Chedeau - [ReactNative] Remove README.md, LICENSE and .travis.yml from fbobjc | Christopher Chedeau - [react-packager] Better transform errors | Amjad Masad - [React Native][react-packager] Fix test runner and fialing tests | Amjad Masad
68 lines
1.8 KiB
Objective-C
68 lines
1.8 KiB
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import "RCTStatusBarManager.h"
|
|
|
|
#import "RCTLog.h"
|
|
|
|
@implementation RCTStatusBarManager
|
|
|
|
static BOOL RCTViewControllerBasedStatusBarAppearance()
|
|
{
|
|
static BOOL value;
|
|
static dispatch_once_t onceToken;
|
|
dispatch_once(&onceToken, ^{
|
|
value = [[[NSBundle mainBundle] objectForInfoDictionaryKey:@"UIViewControllerBasedStatusBarAppearance"] boolValue];
|
|
});
|
|
|
|
return value;
|
|
}
|
|
|
|
- (void)setStyle:(UIStatusBarStyle)statusBarStyle animated:(BOOL)animated
|
|
{
|
|
RCT_EXPORT();
|
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
|
|
if (RCTViewControllerBasedStatusBarAppearance()) {
|
|
RCTLogError(@"RCTStatusBarManager module requires that the \
|
|
UIViewControllerBasedStatusBarAppearance key in the Info.plist is set to NO");
|
|
} else {
|
|
[[UIApplication sharedApplication] setStatusBarStyle:statusBarStyle
|
|
animated:animated];
|
|
}
|
|
});
|
|
}
|
|
|
|
- (void)setHidden:(BOOL)hidden withAnimation:(UIStatusBarAnimation)animation
|
|
{
|
|
RCT_EXPORT();
|
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
|
|
if (RCTViewControllerBasedStatusBarAppearance()) {
|
|
RCTLogError(@"RCTStatusBarManager module requires that the \
|
|
UIViewControllerBasedStatusBarAppearance key in the Info.plist is set to NO");
|
|
} else {
|
|
[[UIApplication sharedApplication] setStatusBarHidden:hidden
|
|
withAnimation:animation];
|
|
}
|
|
});
|
|
}
|
|
|
|
- (NSDictionary *)constantsToExport
|
|
{
|
|
return @{
|
|
@"Style": @{
|
|
@"default": @(UIStatusBarStyleDefault),
|
|
@"lightContent": @(UIStatusBarStyleLightContent),
|
|
},
|
|
@"Animation": @{
|
|
@"none": @(UIStatusBarAnimationNone),
|
|
@"fade": @(UIStatusBarAnimationFade),
|
|
@"slide": @(UIStatusBarAnimationSlide),
|
|
},
|
|
};
|
|
}
|
|
|
|
@end
|