3.0.0 • Published 2 years ago

react-native-cnvitals-react-native v3.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Carenow-CarePlixVitals React-Native SDK

Although this Cordova plugin is public, you'll need a license for the CNVitals SDK in order to use it. If you have a license you'll need to clone this repository and replace the library/framework files with the ones you received from CarePlix Team.

Installation

To install the plugin to your React Native project use the CLI Tool:

#!bash
$ npm i react-native-cnvitals-react-native

Full example

onDeviceReady: function() {
  // Start measurement, the measurement will stop automatically on the end.
    let data = JSON.stringify({
      api_key: '',
      scan_token: '',
      employee_id: '',
      language: '',
      color_code: '',
      measured_height: '',
      measured_weight: '',
      posture: ''
    });
    CnvitalsReactNative.getVitals(data).then(setResult);

  //successCallback
  The function to be executed when the reading has successfully completed or failed
  setResult(values){
      //where the values are the various measurements obtained or the error occured 
      [JSON Object String]
  }

  //params
  The various key params to be passed to make the sdk work
  {
      api_key : "sample_key",
      scan_token : "sample_token",
      employee_id: 'sample_token',
      language: 'en',
      color_code: '#c82633',
      measured_height: '180',
      measured_weight: '60',
      posture: 'posture'  
  } 
});

For any Queries

Please visit the Carenow. Contact customer support for obtaining the sdk (help@carenow.healhcare)