haptic_feedback 0.0.4 copy "haptic_feedback: ^0.0.4" to clipboard
haptic_feedback: ^0.0.4 copied to clipboard

A Flutter plugin for haptic feedback. It uses the standard iOS haptics, and analog haptics on Android.

example/lib/main.dart

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

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

///
class MyApp extends StatefulWidget {
  /// Example app that uses the plugin.
  const MyApp({super.key});

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

class _MyAppState extends State<MyApp> {
  static const _haptics = Haptics();

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      theme: ThemeData.light(),
      darkTheme: ThemeData.dark(),
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Haptic feedback playground'),
        ),
        body: Builder(builder: (context) {
          return ListView(
            children: [
              for (final type in HapticsType.values)
                ListTile(
                  title: Text(type.name),
                  // ignore: invalid_use_of_visible_for_testing_member
                  subtitle: Text(type.description),
                  onTap: () async {
                    final can = await _haptics.canVibrate();

                    if (!mounted) return;
                    ScaffoldMessenger.of(context).hideCurrentSnackBar();
                    ScaffoldMessenger.of(context).showSnackBar(
                      SnackBar(
                        content: can
                            ? Text('$type', textAlign: TextAlign.center)
                            : const Text(
                                'Device is not capable of haptic feedback.',
                              ),
                        duration: const Duration(seconds: 1),
                      ),
                    );

                    if (!can) return;
                    await _haptics.vibrate(type);
                  },
                ),
            ],
          );
        }),
      ),
    );
  }
}
73
likes
0
points
6.65k
downloads

Publisher

verified publisherachim.io

Weekly Downloads

A Flutter plugin for haptic feedback. It uses the standard iOS haptics, and analog haptics on Android.

Repository (GitHub)
View/report issues

Topics

#haptic #feedback #haptics #vibration #plugin

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on haptic_feedback