Abraham Przewodnik
Abraham Przewodnik
I tried to fix this using [patch-package](https://github.com/ds300/patch-package). The following patch seems to work: ``` diff --git a/node_modules/styled-components/native/dist/constructors/constructWithOptions.d.ts b/node_modules/styled-components/native/dist/constructors/constructWithOptions.d.ts index d598842..4ffac9b 100644 --- a/node_modules/styled-components/native/dist/constructors/constructWithOptions.d.ts +++ b/node_modules/styled-components/native/dist/constructors/constructWithOptions.d.ts @@ -9,9 +9,10 @@ type...
I just encountered the same bug. Here is a workaround, that I found: ```js const { platformSelect, platformColor, hairlineWidth, pixelRatio, fontScale, getPixelSizeForLayoutSize, roundToNearestPixel } = require('nativewind/dist/theme-functions') ``` You can pick...