2022-06-08 00:50:05 +02:00
# Social App
In-progress social app.
Uses:
- [React Native ](https://reactnative.dev )
2022-06-08 22:52:12 +02:00
- [React Native for Web ](https://necolas.github.io/react-native-web/ )
2022-06-08 01:56:31 +02:00
- [React Navigation ](https://reactnative.dev/docs/navigation#react-navigation )
2022-06-08 00:50:05 +02:00
- (todo) [MobX ](https://mobx.js.org/README.html ) and [MobX State Tree ](https://mobx-state-tree.js.org/ )
- (todo) [Async Storage ](https://github.com/react-native-async-storage/async-storage )
## Build instructions
- Setup your environment [using the react native instructions ](https://reactnative.dev/docs/environment-setup ).
2022-06-08 01:56:31 +02:00
- After initial setup:
- `cd ios ; pod install` Installs the React Navigation deps ([info](https://reactnative.dev/docs/navigation#installation-and-setup)).
2022-06-08 00:50:05 +02:00
- To run the iOS simulator: `yarn ios`
- To run the Android simulator: `yarn android`
2022-06-08 22:52:12 +02:00
- To run the Web app: `yarn web`
2022-06-08 00:50:05 +02:00
- Tips
- `npx react-native info` Checks what has been installed.
- Android instructions are a *little* inaccurate but not as much as you might think. I had to manually create a virtual device, then run `yarn android` twice (once to start the emulator and the second time to connect to it).