wiggle_kit 1.0.5
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.
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(),
);
}
}