Using Ignite with the create-react-native-app

In theory, it looks like you should use Ignite and its templates with create-react-native-appby doing:

ignite attach
ignite add ir-boilerplate

And then copy the template application code to the project directory.

Now that create-react-native-appis closely associated with Expo, this is not working properly. Ignite code causes all kinds of errors within the Expo framework. From my reading, Ignite conflicts seem to contradict what Expo provides.

One lone soldier cracked a solution to the Expo conflicts, but this was done only for the Expo, not create-react-native-app. I would also prefer a more suitable solution.

So ... did anyone get an Ignite template working in a new create-react-native-appone that integrates with Expo?

If this is not possible, what would you recommend? I consider it safe to assume that Ignite will need to be updated to support the exhibition, especially now that it is rooted in create-react-native-app. If I develop using Ignite today, can I transfer my work to a structure create-react-native-appif Ignite supports it?

Thank!

+4
source share
3 answers

$ ignite new MyLatestCreation -b ignite-expo

(according to the GitHub stream: https://github.com/infinitered/ignite/issues/1008 )

+3
source

Hi buddy! I would recommend you this template for expo integration with ignite: https://github.com/skellock/expo-with-ignite

+2

: ignite-expo

ignite new MyLatestCreation -b ignite-expo

0

Source: https://habr.com/ru/post/1682070/


All Articles