react-native-health-symptoms
Version:
A React Native package to interact with Apple HealthKit, including symptoms
34 lines (25 loc) • 432 B
Markdown
# saveBmi
save a numeric BMI value to Healthkit
`saveBmi` accepts an options object containing a numeric BMI value:
Example input options:
```javascript
let options = {
value: 27.2,
}
```
Call the method:
```javascript
AppleHealthKit.saveBmi(
(options: HealthInputOptions),
(err: Object, results: number) => {
if (err) {
return
}
// BMI successfully saved
},
)
```
Example output:
```json
16.7
```