flutter_health 1.2.12 copy "flutter_health: ^1.2.12" to clipboard
flutter_health: ^1.2.12 copied to clipboard

This library combines both GoogleFit and AppleHealthKit. It support most of the values provided.

flutter_health #

This library combines both GoogleFit and AppleHealthKit. It support most of the values provided.

Works on from iOS 11.0. Some data types are supported from iOS 12.2.

Supports Android X

Dart package

Gitlab link

AppleHealthKit #

First Let's go through apple health kit:

Setup #

From Runner, select the Capabilities tab

  • Enable HealthKit
  • Check the Clinical Health Records box.

Then in the info.plist, Add string values for the following:

  • NSHealthUpdateUsageDescription
  • NSHealthShareUsageDescription

How to use #

Check if Apple Health is available on the device

await FlutterHealth.checkIfHealthDataAvailable()

Request authorization for the data types supported by the plugin

await FlutterHealth.requestAuthorization()
For now, you can request all of the options provided by the library

Get the samples of data types authorized by the user within the given time range

await FlutterHealth.getBodyFat(startDate, endDate)
await FlutterHealth.getHeartRate(startDate, endDate)
await FlutterHealth.getBloodPressureSys(startDate, endDate)

...

Data will be returning as a List of an object called HKHealthData. This object has the following attributes:

 double value;
 String unit;
 int dateFrom;
 int dateTo;

You can get those values with this library: #

Tested:

  • bodyFatPercentage
  • height
  • bodyMassIndex
  • waistCircumference
  • stepCount
  • basalEnergyBurned
  • activeEnergyBurned
  • heartRate
  • restingHeartRate
  • walkingHeartRateAverage
  • bodyTemperature
  • bloodPressureSystolic
  • bloodPressureDiastolic
  • oxygenSaturation
  • bloodGlucose
  • electrodermalActivity

Could not be tested without a watch:

  • highHeartRateEvent
  • lowHeartRateEvent
  • irregularHeartRhythmEvent

Full Example #

 await FlutterHealth.checkIfHealthDataAvailable();
 bool _isAuthorized = true;
 DateTime startDate = DateTime.utc(2018);
 DateTime endDate = DateTime.now();
 var _dataList = List<HKHealthData>();
 
 _isAuthorized = await FlutterHealth.requestAuthorization();
 if (_isAuthorized) _dataList.addAll(await FlutterHealth.getBodyFat(startDate, endDate));
 if (_isAuthorized) _dataList.addAll(await FlutterHealth.getHeight(startDate, endDate));
 if (_isAuthorized) _dataList.addAll(await FlutterHealth.getBodyMass(startDate, endDate));
 if (_isAuthorized) _dataList.addAll(await FlutterHealth.getWaistCircumference(startDate, endDate));
 if (_isAuthorized) _dataList.addAll(await FlutterHealth.getStepCount(startDate, endDate));
 if (_isAuthorized) _dataList.addAll(await FlutterHealth.getBasalEnergyBurned(startDate, endDate));
 if (_isAuthorized) _dataList.addAll(await FlutterHealth.getActiveEnergyBurned(startDate, endDate));
 if (_isAuthorized) _dataList.addAll(await FlutterHealth.getHeartRate(startDate, endDate));
 if (_isAuthorized) _dataList.addAll(await FlutterHealth.getRestingHeartRate(startDate, endDate));
 if (_isAuthorized) _dataList.addAll(await FlutterHealth.getWalkingHeartRate(startDate, endDate));
 if (_isAuthorized) _dataList.addAll(await FlutterHealth.getBodyTemperature(startDate, endDate));
 if (_isAuthorized) _dataList.addAll(await FlutterHealth.getBloodPressureSys(startDate, endDate));
 if (_isAuthorized) _dataList.addAll(await FlutterHealth.getBloodPressureDia(startDate, endDate));
 if (_isAuthorized) _dataList.addAll(await FlutterHealth.getBloodOxygen(startDate, endDate));
 if (_isAuthorized) _dataList.addAll(await FlutterHealth.getBloodGlucose(startDate, endDate));
 if (_isAuthorized) _dataList.addAll(await FlutterHealth.getElectrodermalActivity(startDate, endDate));
 if (_isAuthorized) _dataList.addAll(await FlutterHealth.getHKHighHeart(startDate, endDate));
 if (_isAuthorized) _dataList.addAll(await FlutterHealth.getHKLowHeart(startDate, endDate));
 if (_isAuthorized) _dataList.addAll(await FlutterHealth.getHKIrregular(startDate, endDate));

#GoogleFit

Setup #

For GoogleFit, the initial setup is a bit longer, and can get frustrating. Just follow this setup.

How to use #

Request authorization for the data types supported by the plugin

await FlutterHealth.requestAuthorization()
For now, you can request all of the options provided by the library

Get the samples of data types authorized by the user within the given time range

For all data

await FlutterHealth.getGFAllData(startDate, endDate)

For specific type

await FlutterHealth.getGFBodyFat(startDate, endDate)
await FlutterHealth.getGFHeartRate(startDate, endDate)
await FlutterHealth.getGFBloodPressureSys(startDate, endDate)

...

Data will be returning as a List of an object called GFHealthData. This object has the following attributes:

 String value;
 String value2;
 String unit;
 int dateFrom;
 int dateTo;

You can get those GoogleFit values with this library: #

  • bodyFatPercentage
  • height
  • stepCount
  • calories
  • heartRate
  • bodyTemperature
  • bloodPressure
  • oxygenSaturation
  • bloodGlucose
10
likes
40
pub points
0%
popularity

Publisher

unverified uploader

This library combines both GoogleFit and AppleHealthKit. It support most of the values provided.

Repository (GitLab)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_health