News, articles, tips & tricks

Real World Situation Where Augmented Reality Can Be Utilized

When social media and gaming communities connect to AR-enabled applications, it erases geographic distances between people. While one user is physically present in a real-world situation, AR enables other users to interact remotely with that same experience. Collaborative AR Current collaboration tools already allow data-sharing in real time: people can watch each other play online…

Learn more
React Native Tutorial : Simple Layouts With react-native-easy-grid

Sometimes it becomes harder for UI/UX designers to build complex layouts in React Native.Here in this article we will show you how to use an very simple utility library for React Native to build layouts. You can download the version used in this tutorial at react-native-easy-grid-fork. Or npm install react-native-easy-grid --save import { Col, Row,…

Learn more
ReactJS Tutorial : Fetching Data From APIs

Using fetch with JavaScript to retrieve data from an API is quite similar using with React. In this post, we will discuss through the steps to use fetch to get data from an API using React. We will be going slow enough that, even if this is your first time using an API, or you’re…

Learn more
ReactJS Tutorial: Component Data Transfer

In React JS, there’s generally a need to pass data from one component to another. With the help of state, we can pass data from somewhere in a component, to somewhere else inside the same component. State is the heart of every React component. It’s an object that determines component behavior and distribution. In other…

Learn more