rn-apple-healthkit
Version:
A React Native package for interacting with Apple HealthKit
17 lines (15 loc) • 336 B
Markdown
save a numeric height value to Healthkit
`saveHeight` accepts an options object containing a numeric height value:
```javascript
let options = {
value: 200 // Inches
}
```
```javascript
AppleHealthKit.saveHeight(options: Object, (err: Object, results: Object) => {
if (err) {
return;
}
// height successfully saved
});
```