--- title: Learn more --- Now that the doing is done, let's fill in the gaps on the concepts that we applied. ## JavaScript features such as async/await, import, and others Read about [Modern JavaScript on React Native Express](https://www.reactnative.express/javascript/features). ## React We used React components and APIs. Having a solid understanding of React is essential to using Expo to build your app. We recommend reading the [Main Concepts section](https://reactjs.org/docs/hello-world.html) and the [Hooks section](https://reactjs.org/docs/hooks-intro.html) of the React documentation. ## React Native While developing the tutorial app, we used React Native extensively. You can start from the [React Native basics guide](https://reactnative.dev/docs/flexbox) to learn more. Also, check out the following docs: - [View API reference](https://reactnative.dev/docs/view) - [Text API reference](https://reactnative.dev/docs/text) - [Platform specific code](https://reactnative.dev/docs/platform-specific-code) - [Presenting data in a list](https://reactnative.dev/docs/using-a-listview) We used Flexbox to layout our components. Check out the following recommendations to learn more about it: - [Height & Width](https://reactnative.dev/docs/height-and-width) - [Layout with Flexbox](https://reactnative.dev/docs/flexbox) ## Configuring your app with app.json You can learn more about customizing your [app icon](/guides/app-icons) and [splash screen](/guides/splash-screens) in our guides. Also, look through the [**app.json** Expo config reference](/workflow/configuration) for properties you can configure in this file. ## Building your project into an app Once we've built a project we're ready to share with users, we can build it into an app. Read more about [distributing your app to stores](/distribution/introduction) and [deploying websites](/distribution/publishing-websites). ### Navigation We had one screen in the tutorial app. Most apps have multiple screens. Read more on how to add navigation to your app by following the [Fundamentals guide](https://reactnavigation.org/docs/getting-started) in the React Navigation documentation. ### Debugging Sometimes things go wrong, and when they do, you'll need to use debugging tools to find and fix errors. [Read more about debugging](/workflow/debugging). ### Gestures and Animations To learn more about implementing different types of gestures and animations, we recommend the following: - [React Native Gesture Handler](https://docs.swmansion.com/react-native-gesture-handler/docs/) documentation - [React Native Reanimated](https://docs.swmansion.com/react-native-reanimated/docs) documentation ## Join the community Join our community on [Discord](https://chat.expo.dev/) to chat with other Expo users or to ask questions.