health_kit_reporter icon indicating copy to clipboard operation
health_kit_reporter copied to clipboard

A Flutter wrapper for the HealthKitReporter library

Results 22 health_kit_reporter issues
Sort by recently updated
recently updated
newest added

**Describe the bug** I am simply trying to query the cardiogram with the following Predicate final results = await HealthKitReporter.electrocardiogramQuery( Predicate( DateTime.now().add(Duration(days: -7)), DateTime.now(), ), withVoltageMeasurements: false, ); it returns...

Hi we are trying to implement health_kit_reporter and we have done so in our main Widget, called with runApp(...) Immediately in the main widget we setup the listeners. Even though...

## Status READY ## Migrations NO ## Description This PR exposes the sample query options allowing us to use them in Flutter. This resolves issues that are outlined in #69...

Describe the bug This is the same issue that was happening with workout but it the same with category imports (sleep specifically) this would also fix it for all other...

Thanks so much for the awesome package! I'd hugely appreciate your help with this please. I am getting the error `PlatformException(, Error in parsing quantity type, Identifier unknown: HKQuantityTypeIdentifierAppleSleepingWristTemperature, null)`...

Hi there, thanks so much for the fantastic package!! I am trying to retrieve iOS ECG data including voltage information within my Flutter app. Sadly the app crashes when I...

It is not clear by the documentation, if observerQuery works when app is killed. My current understanding is that it doesn't work. If that is true, do you think you...

For now, anchoredObjectQuery returns all the data in Predicate each time I call it For example, we call anchoredObjectQuery for the 2nd time. Can we only receive the new data...

**Is your feature request related to a problem? Please describe.** I need know if workout is outdoor or indoor **Describe the solution you'd like** A clear and concise description of...

**Describe the bug** When I use HealthKitReporter.workoutQuery(predicate) to retrieve workout data, harmonized.metadata always returns null. **To Reproduce** `try { final workouts = await HealthKitReporter.workoutQuery(predicate); workouts.forEach((element) { print('metadata: ${element.harmonized.metadata}'); }); }...