w 1.0.0
w: ^1.0.0 copied to clipboard
A Flutter package that adds a fun dab animation to your widgets.
import 'package:flutter/material.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,
),
),
),
),
),
),
),
),
);
}