animated_floatactionbuttons 0.1.0 copy "animated_floatactionbuttons: ^0.1.0" to clipboard
animated_floatactionbuttons: ^0.1.0 copied to clipboard

Allows you to create a collapsible list of float buttons. Based on Agung Surya's tutorial.

animated_floatactionbuttons #

This package is based on Agung Surya's tutorial. You can visit his post for more technical information about the package. https://medium.com/@agungsurya/create-a-simple-animated-floatingactionbutton-in-flutter-2d24f37cfbcc

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 our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

##Screenshots

[screen.gif]

Usage #

To use this plugin:

In your flutter project add the dependency:

dependencies:
    ...
    animated_floatactionbuttons: ^0.1.0
copied to clipboard

Example #

//Import package
import 'package:animated_floatactionbuttons/animated_floatactionbuttons.dart';
...
Widget float1() {
    return Container(
      child: FloatingActionButton(
        onPressed: null,
        tooltip: 'First button',
        child: Icon(Icons.add),
      ),
    );
}
Widget float2() {
    return Container(
      child: FloatingActionButton(
        onPressed: null,
        tooltip: 'Second button',
        child: Icon(Icons.add),
      ),
    );
}
...
Scaffold(
    floatingActionButton: AnimatedFloatingActionButton(
        //Fab list
        fabButtons: <Widget>[
            float1(), float2()
        ],
        colorStartAnimation: Colors.Blue,
        colorEndAnimation: Colors.Red,
        animatedIconData: AnimatedIcons.menu_close //To principal button
    ),
)
copied to clipboard

Complete example here

34
likes
20
points
28
downloads

Publisher

unverified uploader

Weekly Downloads

2024.10.06 - 2025.04.20

Allows you to create a collapsible list of float buttons. Based on Agung Surya's tutorial.

License

unknown (license)

Dependencies

flutter

More

Packages that depend on animated_floatactionbuttons