vital_core 3.1.8 copy "vital_core: ^3.1.8" to clipboard
vital_core: ^3.1.8 copied to clipboard

The official Flutter package for Vital APIs allowing fitness apps linking with tryvital.io and with support for HealthKit.

vital_core #

pub package

A Flutter plugin for Vital Core.

Getting Started #

The Vital SDK is split into three main components: vital_core, vital_health and vital_devices.

  • vital_core holds common components to both vital_health and vital_devices. Among other things, it has the network layer that allows us to send data from a device to a server.
  • vital_health is an abstraction over HealthKit an Health Connect(coming soon)
  • vital_devices is an abstraction over a set of Bluetooth devices.

Usage #

To run JSON code generation:

dart run build_runner build

Initialise client with region, environment and api key

final client = VitalClient()
  ..init(region: Region.eu, environment: Environment.sandbox, apiKey: 'sk_eu_...');

Query users:

final Response<List<User>> usersResponse = client.userService.getAll();

Link data provider:

client.linkProvider(user, 'strava','vitalexample: //callback');

Note: To return back to the app after successful linking, setup an intent filter in AndroidManifest.xml and custom URL scheme in info.plist. Note 2: Refer to documentation for all supported data providers.

Documentation #

For more example usage run the sample app with your API key and Region set in main.dart. Please refer to the official Vital docs provide a full reference on using this library.

License #

vital-flutter is available under the AGPLv3 license. See the LICENSE file for more info. VitalDevices is under the Adept Labs Enterprise Edition (EE) license (the “EE License”). Please refer to its license inside its folder.

2
likes
80
pub points
71%
popularity

Publisher

verified publishertryvital.io

The official Flutter package for Vital APIs allowing fitness apps linking with tryvital.io and with support for HealthKit.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

chopper, fimber, flutter, http, json_annotation, url_launcher, vital_core_android, vital_core_ios, vital_core_platform_interface

More

Packages that depend on vital_core