Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch react-native@0.83.1 for the project I'm working on.
Here is the diff that solved my problem:
diff --git a/node_modules/react-native/ReactCommon/react/renderer/core/graphicsConversions.h b/node_modules/react-native/ReactCommon/react/renderer/core/graphicsConversions.h
index ccc6510..8650fcf 100644
--- a/node_modules/react-native/ReactCommon/react/renderer/core/graphicsConversions.h
+++ b/node_modules/react-native/ReactCommon/react/renderer/core/graphicsConversions.h
@@ -68,7 +68,7 @@ inline folly::dynamic toDynamic(const YGValue &dimension)
case YGUnitPoint:
return dimension.value;
case YGUnitPercent:
- return std::format("{}%", dimension.value);
+ return std::to_string(dimension.value) + "%";
}
return nullptr;
This issue body was partially generated by patch-package.
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch
react-native@0.83.1for the project I'm working on.Here is the diff that solved my problem:
This issue body was partially generated by patch-package.