live_pose_detector 0.0.1 copy "live_pose_detector: ^0.0.1" to clipboard
live_pose_detector: ^0.0.1 copied to clipboard

Real-time human pose detection with skeleton overlay for Flutter, plus a built-in push-up form checker and rep counter. Drop-in camera + ML Kit pose landmarks.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'start_screen.dart';

void main() => runApp(const PoseDetectorExampleApp());

class PoseDetectorExampleApp extends StatelessWidget {
  const PoseDetectorExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Live Pose Detector',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        useMaterial3: true,
        colorSchemeSeed: Colors.greenAccent,
        brightness: Brightness.dark,
      ),
      home: const StartScreen(),
    );
  }
}
1
likes
150
points
66
downloads

Documentation

API reference

Publisher

verified publisherdashstack.tech

Weekly Downloads

Real-time human pose detection with skeleton overlay for Flutter, plus a built-in push-up form checker and rep counter. Drop-in camera + ML Kit pose landmarks.

Homepage

License

MIT (license)

Dependencies

camera, flutter, google_mlkit_pose_detection, permission_handler

More

Packages that depend on live_pose_detector