Reading-Notes

Class 41 Summary:

React Native :

Compare and Contrast Redux Toolkit with Redux “Ducks” :

What is the principle advantage of Redux Toolkit

Document the following Vocabulary Terms :

Term  
redux toolkit slices Redux slice is a collection of reducer logic and actions for a single feature of application. Redux state is typically organized into slices, defined by the reducers that are passed to combineReducers
namespace a set of signs (names) 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

React Native:

What is React Native?

Why is React Native?

  1. With React Native Framework, you can render UI for both iOS and Android platforms.

  2. It is an open source framework, which could be compatible with other platforms like Windows or tvOS in the near future.

  3. Since React Native components have the counterpart rights, you can reuse these components for building both Android and iOS apps.

  4. You can either incorporate REACT Native components into the code of existing app or reuse the Cordova-based code with the help of the plugin as well. However, your existing app must be built with Cordova and Ionic code.

  5. React Native Development is comparatively simple, quick and efficient.

  6. REACT Native is a great pick for those developers who have expertise in JavaScript as there is no need to learn Android specific Java or iOS’s Swift. React Native is a UI focused, which makes the apps load quickly and gives a smoother feel.

  7. Another reason why the REACT Native framework has gained popularity in recent years is that the framework helps cater both the platforms at one go and ends the holy war of selecting either iOS or Android development for mobile developers. Hence, giant companies like Facebook, Instagram, Skype, Airbnb, Tesla, Walmart, Baidu Mobile, Bloomberg, UberEATS Vogue and many more have shifted their eyeballs towards it.

What’s the difference between state and props in React?

Introduction to Expo:

Ejecting to ExpoKit:

Sources:

source1 source2 source3