w 1.1.0
w: ^1.1.0 copied to clipboard
A Flutter package that adds a fun dab animation to your widgets.
import 'package:material_ui/material_ui.dart';
import 'package:w/w.dart';
main() {
runApp(
MaterialApp(
home: Scaffold(
appBar: AppBar(title: const Text('Dab Animation Example')),
body: Center(
child: DabAnimation(
child: Container(
width: 100,
height: 100,
color: Colors.blue,
child: const Center(
child: Text(
'Dab!',
style: TextStyle(color: Colors.white, fontSize: 24),
),
),
),
),
),
),
),
);
}