wiggle_kit 1.0.5 copy "wiggle_kit: ^1.0.5" to clipboard
wiggle_kit: ^1.0.5 copied to clipboard

A Flutter widget that wraps any child with plug-and-play wiggle animations. Supports 7 animation types, amplitude, duration, repeat count, and a controller to trigger animations programmatically.

example/lib/main.dart

import 'package:example/wiggle_demo_page.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'WiggleKit Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.indigo),
        useMaterial3: true,
        scaffoldBackgroundColor: const Color(0xFFF2F2F7),
      ),
      home: const WiggleDemoPage(),
    );
  }
}
1
likes
140
points
311
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A Flutter widget that wraps any child with plug-and-play wiggle animations. Supports 7 animation types, amplitude, duration, repeat count, and a controller to trigger animations programmatically.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter, haptic_feedback_pro

More

Packages that depend on wiggle_kit