bouncerwidget 0.0.5 copy "bouncerwidget: ^0.0.5" to clipboard
bouncerwidget: ^0.0.5 copied to clipboard

A Flutter widget to Bounce and animate your widget to get attention of users. Show case your buttons containers as jumping.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:bouncerwidget/bouncerwidget.dart';

void main(List<String> args) {
  runApp(const Example());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        backgroundColor: Colors.white,
        body: Center(
          child: BouncingWidget(
            child: Container(
              height: 40,
              width: 80,
              color: Colors.red,
            ),
          ),
        ),
      ),
    );
  }
}
3
likes
150
pub points
74%
popularity

Publisher

verified publishersahalmp.online

A Flutter widget to Bounce and animate your widget to get attention of users. Show case your buttons containers as jumping.

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter

More

Packages that depend on bouncerwidget