All-in-one project boilerplate built with expo and react-native-web, inspired from @thoughdeveloper.
- Use the same logic across platforms.
- Have the option to use different components for different platforms.
MyComp
|__ MyComp.web.js
|__ MyComp.native.js
|__ MyComp.ios.js
|__ MyComp.android.js
import MyComp from './MyComp';
// ...
- Configure webpack config without having to
eject
, thanks to react-rewired. - ...
start
start web development server
build
create a production build
start.native
start local server for development
start.android
start expo for android
start.ios
start expo for ios
build.android
expo build standalone APK app
build.ios
expo build standalone IPA app
publish.native
publish your project to exp.host
Open an issue and your problem will be solved.
Hossein Dehnokhalaji