Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 286 Bytes

isAvailable.md

File metadata and controls

13 lines (11 loc) · 286 Bytes

Check for Healthkit availability

import AppleHealthKit from 'react-native-health';

AppleHealthKit.isAvailable((err: Object, available: boolean) => {
  if (err) {
    console.log("error initializing Healthkit: ", err);
    return;
  }
  // Healthkit is available
});