Is tailwind-rn reaching into a private internal file of react-native instead of using the public API ?
See original GitHub issueHello,
I’m trying to setup tailwind-rn
in a next.js + expo monorepo (using react-native-web) and after adding tailwind-rn
to my list of next-transpile-modules I still get the following error.

It throws that error trying to parse a Flow file. Could it be that the tailwind-rn
lib is is reaching into a private internal file of react-native instead of using the public API ?
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
vadimdemedes/tailwind-rn - GitHub
Use Tailwind CSS in React Native projects. Contribute to vadimdemedes/tailwind-rn development by creating an account on GitHub.
Read more >5 Reasons to Use Tailwind CSS with React Native
Tailwind CSS is an open-source utility-first CSS framework. It redefines the way you style applications by providing a variety of CSS classes.
Read more >React Native Components Override styles "leaking"
I'm trying to build my own component library specific to my React Native app using the Atomic Design Methodology, so I have small...
Read more >Why you should use Tailwind CSS with React Native
Use Tailwind CSS with your React Native application to reap the benefits of utility-first CSS, like ease of maintenance and styling.
Read more >React native paypal checkout - Caritas Castellaneta
React Native Paypal Android SDK Wrapper module java file. It will appear like this. Developers may want to use global state when many...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@asader If you’re using next.js you can fix this by adding
@react-native-community/hooks
to list of transpiled modules and it now works.I see, then this isn’t a
tailwind-rn
issue. I guess@react-native-community/hooks
isn’t compatible with react-native-web, but you should ask them to confirm.