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

outdated

A fully customizable pulsing button for Flutter. Works the same way RawMaterialButton works.

example/main.dart

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

void main() {
  runApp(ExamplePulsingButton());
}

class ExamplePulsingButton extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        body: SafeArea(
          child: Center(
            child: PulsingButton(
              onPressed: () {},
              child: Icon(Icons.favorite),
              fillColor: Colors.orange,
              padding: EdgeInsets.all(16.0),
            ),
          ),
        ),
      ),
    );
  }
}
5
likes
40
pub points
33%
popularity

Publisher

unverified uploader

A fully customizable pulsing button for Flutter. Works the same way RawMaterialButton works.

Repository (GitHub)
View/report issues

License

BSD-2-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on pulsing_button