heka_health 0.0.2 copy "heka_health: ^0.0.2" to clipboard
heka_health: ^0.0.2 copied to clipboard

outdated

Plugin for integrating HekaHealth SDK in your Flutter Application.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'home_page.dart';

Future<void> main() async {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'TapHealth Demo',
      theme: ThemeData(
        primarySwatch: Colors.red,
      ),
      home: const HomePage(),
    );
  }
}