Open gokul1099 opened 6 months ago
Hi @gokul1099,
On the Initial Setup page, you can select the 'Manual Installation" tab.
Then, you can use the CLI to add components to your project. You can use npx @react-native-reusables/cli@latest add
, then it will prompt you with the type of project you are working with (universal or native-only), with the location of your /components
and /lib
folders, then you can select the components you want to add to your project. It will, then, add the files and dependencies (if any).
Is is possible that there are sections that are missing information. Could you please provide the exact cases please? That way I could fix it
Hi @mrzachnugent I am trying to use the official repo starter base to make the universal react app. I am following the steps mentioned in the docs but still the metro bulid gets stuck without throwing an error.
Can you please help me with this ?
Hi @mrzachnugent I am trying to use the official repo starter base to make the universal react app. I am following the steps mentioned in the docs but still the metro bulid gets stuck without throwing an error.
Can you please help me with this ?
I have the same problem.
Hey @itsyashsahu @rickychan0611,
I am going to try it on my side and document the steps I am taking here.
git clone https://github.com/mrzachnugent/react-native-reusables.git
cp -R react-native-reusables/apps/starter-base/ ./my-project
cd my-project && npm install
npm run ios
node_modules
and ran npm install
once againLet me know if you this fixes your issue.
@mrzachnugent I am doing the same steps just running it for the web.
then it gets stucked at a point. I tried it multiple times
if i run the same on the android it works fine
Hi, I'm having the same issue as @itsyashsahu. The starter project seems to work fine on Android, but when running on web it gets stuck while bundling. No error message or anything, the terminal just freezes. I have tried with both npm
and yarn
. At least in my case, the issue is only on Windows 10. I have tried on macOS and everything works fine.
System details:
It gets stuck here:
It is indeed a problem within nativewind v4. I discovered a pull request in Nativewind's repository and tested it out. I can confirm that it no longer gets stuck on Windows with the correction. However, the pull request has not been merged yet. https://github.com/marklawlor/nativewind/pull/860/commits/59847eb4358efde93cf93a55b5a60812f7661917
Related PR link: https://github.com/marklawlor/nativewind/pull/860
any updates?
any updates?
For updates, you can check the pull request on NativeWind's Github repo: https://github.com/marklawlor/nativewind/pull/860
When it is solved, I will close this issue.
same bug
same issue
As native-wind is no longer maintained, I have switched to tailwind-react-native-classnames. It is also much faster
https://github.com/nativewind/nativewind/pull/860#issuecomment-2132776255
is going nativewind a good route at this time?
is going nativewind a good route at this time?
Yes, I am betting on it. The sole maintainer had taken a break but he now has a team behind him and they are working hard. Here's the latest update https://x.com/danstepanov/status/1806107770799968673?s=46&t=tpxUSfNj59WG9Y3VDKw5sQ
Thanks for the update Zach, they had a simple announcement on the v4 issue just for future reference: https://github.com/nativewind/nativewind/issues/600
@guibzo Work like charm, just used It
I also making a research about running the best react-native
ui kit starter app. Found a little mistake in starter-base
. After the nativewind fix, the build will continue failing
See https://github.com/mrzachnugent/react-native-reusables/pull/212
@mrzachnugent
I have existing react native project, How can i use react-native-reusable? How can i do the initial configuration to use the cli later to add needed components. I have gone through the docs, looks like some sub sections in installation sections are missing.