Android JobScheduler Example

Introduction When working with Android, there will be occasions where you want to run a task at a later point in time or under certain conditions, such as when a device is plugged into a power source or connected to a Wi-Fi network. Google has provided a new component known as the JobScheduler API to handle this […]

Android JobScheduler Example Read More »

ReactNative Working With Firebase Using ChatApp Example

Firebase A fully managed platform for building iOS, Android, and web apps that provides automatic data synchronization, authentication services, messaging, file storage, analytics, and more. In this tutorial, I will demonstrate you how we will store our react native application related data in firebase providing services like database,storage etc.Here we will create FriendlyChatApp and its text data

ReactNative Working With Firebase Using ChatApp Example Read More »

Android Jetpack Paging Example Using Room

Paging Library Announced with new additions at Google IO 2018, the Paging Library is a part of Android Jetpack. The Paging Library makes it easier for you to load data gradually and gracefully within your app’s RecyclerView. The Paging Library helps your app observe and display a reasonable subset of this data. This functionality has several advantages: Data requests consume

Android Jetpack Paging Example Using Room Read More »

Understanding Redux With Simple Example

Redux Redux is all about having some central store that managing our entire application state or where we store our entire application state. Get GITHUB code from HERE. Getting Started You will have to install and configure React Native. If you don’t know how then you can visit to my this tutorial . Create a new

Understanding Redux With Simple Example Read More »

React Native Working With Google Map

This article aims to give knowledge about how to implement Google Maps into your react native applications with basic concepts like Rendering a Map with an initial region, Changing map type ,Placing a marker ,Get user’s current Location ,Move to specific position with animation etc. Get GITHUB code from HERE. Note: In the above video

React Native Working With Google Map Read More »

Android Jetpack-Navigation Library Example

The Navigation Architecture Component, released as part of Android Jetpack , aims to simplify the implementation of navigation in your Android app. This component and its guidelines offer a new look into how navigation should be implemented, including the suggestion for the use of single-Activity architecture as the preferred architecture for Android Jetpack moving forward.

Android Jetpack-Navigation Library Example Read More »

ReactNative Navigation Example

React Native Navigation React Native Navigation provides 100% native platform navigation on both iOS and Android for React Native apps. In this tutorial I will demonstrate you how to install react-native-navigation in your app, work with singlescreen (without tab), work with tabbased screen, Navigating forward, Navigating backward. Get GITHUB code from HERE.     Adding

ReactNative Navigation Example Read More »

ReactNative Vector Icon Usage For Android

ReactNative provide us third party library react-native-vector-icons by using which  we can use built_in icons for different platforms(android,windows,ios). Installation For installing react-native-vector-icons in android: Run:  npm install react-native-vector-icons –save Android Edit android/settings.gradle to look like this (without the +): rootProject.name = ‘MyApp’ include ‘:app’ + include ‘:react-native-vector-icons’ + project(‘:react-native-vector-icons’).projectDir = new File(rootProject.projectDir, ‘../node_modules/react-native-vector-icons/android’) Edit android/app/build.gradle (note: app folder) to look like this: apply plugin:

ReactNative Vector Icon Usage For Android Read More »

React Native Image Picker Example

React Native Image Picker A React Native Image Picker library allows you select a photo/video from the device library or directly from the camera. So in this tutorial I have create react native ImagePickerApp that picks selected image from mobile phone gallery and clicked image from mobile phone camera and displayed in Image component. Get GITHUB

React Native Image Picker Example Read More »

Installing React Native on Windows

React Native React Native is an open source framework created by Facebook that lets you build mobile apps using only javascript. It uses the same design as React, letting you compose a rich mobile UI from declarative components.You can find more about React Native on here. In this tutorial  we are going to install, run and create Android

Installing React Native on Windows Read More »