mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 12:34:17 +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
39 lines
862 B
Objective-C
39 lines
862 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import "RCTUIActivityIndicatorViewManager.h"
|
|
|
|
#import "RCTConvert.h"
|
|
|
|
@implementation RCTUIActivityIndicatorViewManager
|
|
|
|
- (UIView *)view
|
|
{
|
|
return [[UIActivityIndicatorView alloc] init];
|
|
}
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(activityIndicatorViewStyle)
|
|
RCT_EXPORT_VIEW_PROPERTY(color)
|
|
RCT_CUSTOM_VIEW_PROPERTY(animating, UIActivityIndicatorView *)
|
|
{
|
|
BOOL animating = json ? [json boolValue] : [defaultView isAnimating];
|
|
if (animating != [view isAnimating]) {
|
|
if (animating) {
|
|
[view startAnimating];
|
|
} else {
|
|
[view stopAnimating];
|
|
}
|
|
}
|
|
}
|
|
|
|
- (NSDictionary *)constantsToExport
|
|
{
|
|
return
|
|
@{
|
|
@"StyleWhite": @(UIActivityIndicatorViewStyleWhite),
|
|
@"StyleWhiteLarge": @(UIActivityIndicatorViewStyleWhiteLarge),
|
|
@"StyleGray": @(UIActivityIndicatorViewStyleGray),
|
|
};
|
|
}
|
|
|
|
@end
|