mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
b179c4bebe
Summary: Changelog: [Internal] `SafeAreaViewShadowNode` we made incorrect assumption that setting `style` on YGNode and then copying it, always copies the style. This is incorrect, style is only copied once `YGNodeCalculateLayout` has been called on either the node or its parent. Reviewed By: JoshuaGross Differential Revision: D22945677 fbshipit-source-id: 9c063c2dfe4d2390cf2fd10a96d2de418fa69376
17 lines
376 B
C++
17 lines
376 B
C++
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#include "SafeAreaViewShadowNode.h"
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
extern const char SafeAreaViewComponentName[] = "SafeAreaView";
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|