React is a Javascript library by facebook for creating interactive, state-driven UI. React has a component-based approach where simple components are composed together to make complex UI. The question section below will answer frequently asked interview question for React. Question 1: What is JSX?Answer 1: JSK is a syntax extension… Read more »
In this post, we will deal with installing react native camera, hassle-free into an android app and will configure it to use Firebase MLKit for face detection Before we start integrating we assume that you have a react native app with firebase integrated. If not then please go through creating… Read more »
No other cross-platform framework had such a profound impact on mobile development as react native. There has been a growing trust and react native is established as a development platform. There has always been a demand for react native UI kit. And the good news is there are many cross-platform… Read more »
This is part one of a two-part blog post. We will integrate firebase cloud messaging in a react native android app. We will first create a firebase project and will create an android app within it. If you wish to see the configuration steps in react native then you can… Read more »
This is part two and final part of the blog post where we integrate firebase into react native android project and send push notification. If you have not yet created your firebase project and downloaded your google-services.json file then start by reading part one of the series. In this part,… Read more »
I order to create a loader or Head-Up Display for react native app we will create a simple component with activity indicator, which can cover full screen and disable all user action till the time it is showing. Given below is the code of Loader. Create an ActivityOverlay.js file and… Read more »
Xcode has officially dropped support for SVN . Though I my self recommend git but still if you already have existing repo its time to move on to a good SVN client
You can find the download link of Flutter SDK here. The latest version is kept on top Flutter 1.7 Flutter Mac 1.7 | Flutter Windows 1.7 | Flutter Linux 1.7 Flutter 1.0 Flutter Mac 1.0 | Flutter Windows 1.0 | Flutter Linux 1.0
While uploading the build to the test flight many where greeted with compliance missing. Which on further alerted users with a message “If you are making use of ATS or making a call to HTTPS please note that you are required to submit a year-end self-classification report to the US government”… Read more »
When you want to ensure that a code block is executed just before control exits the scope, Swift Defer Statement comes to your rescue. Sometimes a function is required to have multiple conditional exit point and covering those exit points without swift defer statement can lead to code duplication or it might… Read more »