w 1.0.0 copy "w: ^1.0.0" to clipboard
w: ^1.0.0 copied to clipboard

A Flutter package that adds a fun dab animation to your widgets.

example/w_example.dart

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,
                  ),
                ),
              ),
            ),
          ),
        ),
      ),
    ),
  );
}
0
likes
150
points
12
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A Flutter package that adds a fun dab animation to your widgets.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on w