mobile development Archives

Hooks in React

Author - Webner
|
0 Comments
|

Hooks are the new feature of the react. They let you use the state and other features of React without creating a class. They are mainly used to handle state and other side effects in react functional components. Side effects are essentially anything that affects something outside of the scope Read more…

How to Detect Mobile devices in php

Author - Gopi Garg

Detect mobile device php code

We often need to detect if site visitor is using an iPad, a smartphone or any other mobile device in order to change website appearance and even make it faster by reducing data load. Normally we use the media queries and Read more…

How to read Mobile Hardware and Operating system Details in Ionic

Author - Varun Chopra
|
0 Comments
|

Steps to read Mobile Hardware and Operating system Details in Ionic

To get the mobile hardware and operating system information you can use device plugin in ionic framework.
Installation:

$ ionic cordova plugin add cordova-plugin-device
$ npm install @ionic-native/device

Platform:Read more…

How to run Background services in Ionic app

Author - Varun Chopra
|
0 Comments
|

Steps to run Background Services in Ionic app

To keep your app running some functionality in the background you can use background mode plugin in ionic.
Installation:

$ ionic cordova plugin add cordova-plugin-background-mode
$ npm install @ionic-native/background-mode

Platform:p Read more…

How to get scan QR Code or Barcode in React Native app

Author - Varun Chopra
|
0 Comments
|

Steps to scan QR Code or Barcode in React Native app

There are different libraries to scan barcode in react native. One of them is react native camera kit.
Installation:
npm install react-native-camera-kit –save react-native link react-native-camera-kit

Add the Read more…

How to get scan QR Code or Barcode in Ionic app

Author - Varun Chopra
|
0 Comments
|

Steps to scan QR Code or Barcode in Ionic app

For Scanning barcode Ionic provides a barcode scanner plugin which opens camera view, which can be used to scans a barcode or QR Code and return the scanned code back to you.

Installation:
$ ionic Read more…