slorber / gatsby-plugin-react-native-web

react-native-web plugin for Gatsby
https://sebastienlorber.com/using-expo-in-gatsby
MIT License
276 stars 30 forks source link

Who is using this? #7

Open slorber opened 5 years ago

slorber commented 5 years ago

Hi,

I'd like to know who is currently using this plugin to build real things? Particularly the newest releases.

As I'm not currently using my own plugin, I don't know exactly if the newest releases work fine so any feedback is welcome :)

kawallis commented 5 years ago

I tried using it couldnt install perhaps update the instruction to be more clear on what to do

slorber commented 5 years ago

thanks for reporting @kawallis , can you explain what were your install errors?

rickiesmooth commented 5 years ago

I'm using this without any issues :)

slorber commented 5 years ago

awesome :)

Btw if any site you build is opensource or public don't hesitate to publish link/repo

As the official example got deleted from gatsby repo we don't currently have any example available online

rickiesmooth commented 5 years ago

my site is open source, but I can also just make a PR to add a small example folder

slorber commented 5 years ago

why not ;)

barakd commented 5 years ago

Worked like a charm, thanks a lot! 🎉

slorber commented 5 years ago

awesome :) what are you building?

Can you share your rnw / gatsby versions for those that struggle to have a working setup?

DoctaCloak commented 5 years ago

So did you basically just take a regular gatsby project and add the RN Web module to it essentially? @slorber ? Or is there a special build process that you also had to setup as well?

slorber commented 5 years ago

@DoctaCloak I'll try to document it better, as I'm building an example I see what the documenation is lacking.

Mostly those are dependency things that should be added because the lib only declare peerDependencies.

For example you need to add the plugin, but also have at least those dependencies:

    "react": "^16.4.0",
    "react-dom": "^16.4.0",
    "react-native": "^0.55",
    "react-native-web": "^0.10.1",
    "babel-plugin-react-native-web": "^0.10.1",
kellerchch commented 5 years ago

@slorber I'm excited to try your plugin. Thanks for sharing. I've only watched lots of react-native and gatsby tutorials and am venturing in to a project that will have the mobile component so any instructions would be great. I'm trying to refactor an old project, https://take24.io into a native mobile app with the web interface for sharing reports and doing administrative stuff.