Reading: React Native
Review, Research, and Discussion
- Compare and Contrast Redux Toolkit with Redux “Ducks”?
- Redux Toolkit’s it’s helps to simplify common Redux use cases.
- Ducks is a modular pattern that collocates actions, action types and reducers.
- What is the principle advantage of Redux Toolkit?
- Redux Toolkit makes it easier to write good Redux applications and speeds up development, by baking in our recommended best practices, providing good default behaviors, catching mistakes, and allowing you to write simpler code. Redux Toolkit is beneficial to all Redux users regardless of skill level or experience. It can be added at the start of a new project, or used as part of an incremental migration in an existing project.
Vocabulary
- redux toolkit slices
- A function that accepts an initial state, an object full of reducer functions, and a “slice name”, and automatically generates action creators and action types that correspond to the reducers and state. This API is the standard approach for writing Redux logic.
- namespace
- In computing, a namespace is a set of signs that are used to identify and refer to objects of various kinds. A namespace ensures that all of a given set of objects have unique names so that they can be easily identified. Namespaces are commonly structured as hierarchies to allow reuse of names in different contexts.
Preparation
- React Native
- React Native combines the best parts of native development with React, a best-in-class JavaScript library for building user interfaces.
- Use a little—or a lot. You can use React Native today in your existing Android and iOS projects or you can create a whole new app from scratch.
- React primitives render to native platform UI, meaning your app uses the same native platform APIs other apps do.
- Many platforms, one React. Create platform-specific versions of components so a single codebase can share code across platforms. With React Native, one team can maintain two platforms and share a common technology—React.
- React Native lets you create truly native apps and doesn’t compromise your users’ experiences. It provides a core set of platform agnostic native components like View, Text, and Image that map directly to the platform’s native UI building blocks.
- React components wrap existing native code and interact with native APIs via React’s declarative UI paradigm and JavaScript. This enables native app development for whole new teams of developers, and can let existing native teams work much faster.
- Expo
- Expo is a framework and a platform for universal React applications. It is a set of tools and services built around React Native and native platforms that help you develop, build, deploy, and quickly iterate on iOS, Android, and web apps from the same JavaScript/TypeScript codebase.
- Expo is an open-source platform for making universal native apps for Android, iOS, and the web with JavaScript and React.
- ExpoKit
- ExpoKit is an Objective-C and Java library that allows you to use the Expo platform and your existing Expo project as part of a larger standard native project – one that you would normally create using Xcode, Android Studio, or react-native init.
- If you created an Expo project and you want a way to add custom native modules, this guide will explain how to use ExpoKit for that purpose.
- Normally, Expo apps are written in pure JS and never “drop down” to the native iOS or Android layer. This is core to the Expo philosophy and it’s part of what makes Expo fast and powerful to use.
- However, there are some cases where advanced developers need native capabilities outside of what Expo offers out-of-the-box. The most common situation is when a project requires a specific Native Module which is not supported by React Native Core or the Expo SDK.
- In this case, Expo allows you to eject your pure-JS project from the Expo iOS/Android clients, providing you with native projects that can be opened and built with Xcode and Android Studio. Those projects will have dependencies on ExpoKit, so everything you already built will keep working as it did before.
- We call this “ejecting” because you still depend on the Expo SDK, but your project no longer lives inside Expo Go. You control the native projects, including configuring and building them yourself.
-