breathing_rotating_button 1.0.2 copy "breathing_rotating_button: ^1.0.2" to clipboard
breathing_rotating_button: ^1.0.2 copied to clipboard

A Flutter package which has breathing and rotating animation button.

breathing_rotating_button #

A Flutter package for custom made breathing and rotating button written in Dart.

Do star the repo. Thanks 👍

Screenshots #

image image

Usage #

Example To use this package:

   dependencies:
       flutter:
           sdk: flutter
       breathing_rotating_button:

How to use #

class SpinScreen extends StatefulWidget {
  @override
  _SpinScreenState createState() => _SpinScreenState();
}

class _SpinScreenState extends State<SpinScreen> {

  @override
  Widget build(BuildContext context) {
    // your screen
    return Material(
      color: Colors.white,
      child: Padding(
        padding: const EdgeInsets.all(40.0),
        //The widget is called here
        /*duration is in milliseconds and rest parameters are conventional, rotate is a bool which describes whether to rotate or not.
        icon can also be added, but you can skip it if you want.
        That's it ;)*/
        child: BreathingRotatingButton(background: Colors.teal, foreground: Colors.white, 
        icon: Icons.person, iconColor: Colors.white, radius: 70, duration: 1000, rotate: true,),
      ),
    );
  }
}

Created and Maintained by #

Omi Wakode

Getting Started #

This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.

For help getting started with Flutter, view online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

6
likes
20
pub points
0%
popularity

Publisher

unverified uploader

A Flutter package which has breathing and rotating animation button.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on breathing_rotating_button