ASakanksha srivastavaindeeplinking.hashnode.dev·Oct 19, 2024 · 3 min readCross Platform Development In React NativeReact Native achieve cross-platform development by allowing developers to write code once using Java Script and React, and then it translates that code into native components for both ios and Android. it does this by using a bridge between Java Scrip...00
ASakanksha srivastavaindeeplinking.hashnode.dev·Oct 17, 2024 · 3 min readHermes In React NativeHermes is an open source JavaScript engine designed by “Facebook“ specially to optimize the performance of React Native apps. It improves both the startup time and overall performance of the application, especially on Android device. Why uses Hermes?...00
ASakanksha srivastavaindeeplinking.hashnode.dev·Oct 15, 2024 · 1 min readAndroid Native Module / Bridge :-An Android Native Module in a framework like React React Native is a way to write custom code in Android’s native language (java / Kotlin) and then expose that code so that the Java script side of your app can call it. This is useful for tasks that J...00
ASakanksha srivastavaindeeplinking.hashnode.dev·Oct 13, 2024 · 5 min readVirtual DOM ( Document Object Model)The virtual DOM is a concept in web development, particularly in libraries and framework like React, that optimizes the way changes to the UI are handled. How the virtual DOM works :- Real DOM : The regular DOM ( Document Object Model ) is a tree st...00
ASakanksha srivastavaindeeplinking.hashnode.dev·Oct 12, 2024 · 2 min readDifference between React and React-NativePlatform:- React (React.js) : A java script library used for building web applications it focuses on creating user interface for website. React Native : a framework for building mobile application (for Android & ios) using java script and React. i...00