/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew update
brew upgrade node
brew install node
sudo npm install expo-cli --global
expo init <file name>
Choose blank template, and input Y
to use Yarn to install dependencies
yarn start
Make sure you have downloaded Xcode and Android Studio, and have initialized a virtual machine on both for emulator You can also download the Expo Client app on a physical device for viewing your app there
Command + D for getting back to the Expo menu in web Shake device if on hardware
When installing some packages while running the local server, an error might occur. To fix that, stop the instance
ctrl+c
, install most recent packagesnpm install
and finally restart the expo server byexpo start
oryarn start
- Styled Components
npm install -s styled-components
- Ionicons https://ionicons.com/
- React Native SVG
npm install react-native-svg
- SVG Playground https://www.smooth-code.com/open-source/svgr/playground/
- Redux
npm install --save redux
- React-Redux
npm install --save react-redux
- React-Navigation
npm install --save react-navigation
- React-Native-Gesture-Handler
npm install react-native-gesture-handler
- React-Native-Reanimated
npm install react-native-reanimated
- React-Navigation-Stack
npm install react-navigation-stack
- React-Navigation-Tabs
npm install react-navigation-tabs
- Apollo and GraphQl
npm install apollo-boost react-apollo graphql --save
- React Native Showdown
npm install --save react-native-showdown
I couldnt get the Ionicons to work, might have to survive with another library or local svg icons Look at Screens and Navigation at min 18.
Make sure to have the latest Expo CLI in order for app to run correctly, found some issues when simulator was opening but expo app was not.
Run npm install
or yarn install
after adding libraries before starting local development server.
Could not integrate WebView, it is no longer in the React-Native core package. Whole session of HTML and Markdown. Uninstalled.
Could not integrate Showdown. Still installed.
- No {course.image} on Android. Data is loaded from Contentful, but image is not appearing. HomeScreen.js, Card.js, SectionScreen.js.
- No markdown on iOS. The library react-native-showdown might be the causant for the issue. HomeScreen.js, SectionScreen.js.
- Ionicons is built into React Native core library, so there is no need to import it. Syntax is a little different from what the course says.