Unity-Integration-in-React-Native (1)

Unity Integration in React Native

Unity Integration in React Native With varying needs, React Native implementations growing leaps and bounds, it is very important integrate cross platforms Can we integrate a Unity Project in to a React Native project? Yes, We can integrate Unity in to React using Native Components for both iOS and Android. So, that we can use…

React-Redux (2)

React Redux

React Redux Redux is a predictable state container for JavaScript apps. It helps you write applications that behave consistently, run in different environments (client, server, and native), and are easy to test. … You can use Redux together with React, or with any other view library. Advantages Of Redux: Following are some of the major…

React-Hooks (1)

React Hooks

React Hooks What is a Hook? Hooks are a new inclusion in the React 16.8. Hooks allow us to utilize the react features without the help of the class. Hooks give API to the React Principles like state, props, refs, etc. Hooks can also blend the principles of react. Need for Hooks When you need…

Package-for-view-manager-and-register-in-MainApplication (1)

Package for view manager and register in MainApplication.java

Package for view manager and register in MainApplication.java You need to create the react package for the view manager class. For that create new java class that implements ReactPackage interface as below. Subsequently mention this package in ‘getPackages’ method of ’MainApplication.java’ class. Native module integration with iOS Native custom view and bridging header file and…

Native-Module-with-React-Native-

Native Module with React Native

Native Module with React Native Hybrid framework provide a great way to develop your application with minimal efforts for multiple platforms. Sometimes you may want to reuse your existing code of Swift or Java code without writing Javascript or to accomplish some complex logic of Image processing or data processing, etc. We designed React Native…

Stripe-Payments-with-React (1)

Stripe Payments with React

Stripe Payments with React Stripe is a payment platform with a well documented API for developers. Stripe is the alternative for Paypal. Securely collect sensitive card details using Elements in a React application with the react-stripe-elements library. You can make use of Stripe Elements, our prebuilt UI components, to create a payment form that securely…

Flutter-for-React-Native-developers (1)

Flutter for React Native developers

Flutter for React Native developers What’s Flutter and React Native React Native is a project started by Facebook internally that they open-sourced in 2015. On the other side is Flutter, a project started by Google which they have been heavily promoting since I/O 2017. Both of these technologies help app developers build cross-platform apps faster…

React Native Animations

React Native Animations Animations Animation can be defined as manipulating images or objects to appear as moving images or objects. React Native provides two complementary animation systems: Animated for granular and interactive control of specific values, and LayoutAnimation for animated global layout transactions. History and Evolution To work with cross-platform JavaScript code, native components of…