mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-05 09:29:07 +08:00
Reviewed By: mmmulani Differential Revision: D7196168 fbshipit-source-id: 031ed5ab24d1075f775ec71e5b78d32e03fe8f6f
16 lines
383 B
Objective-C
16 lines
383 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import "RCTInputAccessoryShadowView.h"
|
|
|
|
#import <React/RCTUtils.h>
|
|
|
|
@implementation RCTInputAccessoryShadowView
|
|
|
|
- (void)insertReactSubview:(RCTShadowView *)subview atIndex:(NSInteger)atIndex
|
|
{
|
|
[super insertReactSubview:subview atIndex:atIndex];
|
|
subview.width = (YGValue) { RCTScreenSize().width, YGUnitPoint };
|
|
}
|
|
|
|
@end
|