OmiWakode / breathing_rotating_button

A flutter package for ready to use animation

Home Page:https://pub.dev/packages/breathing_rotating_button

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

A flutter package for ready to use animation

https://pub.dev/packages/breathing_rotating_button

License:Other


Languages

Language:Dart 100.0%