Animated Expandable Fab | Coderz Repository

animated_expandable_fab

Last updated:

0 purchases

animated_expandable_fab Image
animated_expandable_fab Images

Free

Languages

Categories

Add to Cart

Description:

animated expandable fab

Animated Expandable Fab #
A Flutter package for easily creating animated expandable fabs.

Description #
Animated Expandable Fab is a package for creating beautiful and customizable expandable floating action buttons. This package provides an easy-to-use widget, ExpandableFab, which can be used to create expandable fabs with various animations, icons, and children.
Features #

Customizable distance, direction, and animation of expansion
Customizable open and close icons
Support for multiple children
Support for closing the fab on child button press

Getting started #
To use this package, add animated_expandable_fab as a dependency in your pubspec.yaml file.
dependencies:
animated_expandable_fab: any
copied to clipboard
Usage #
To use the ExpandableFab widget, simply add it to your widget tree as a child of a Scaffold widget. You can customize the distance, direction, and animation of the expansion by passing in the appropriate parameters. You can also add children to the fab by passing in a list of widgets.
Scaffold(
floatingActionButton: ExpandableFab(
distance: 100,
openIcon: Icon(Icons.add),
closeIcon: Icon(Icons.close),
children: [
ActionButton(
child: Text("Child 1"),
onPressed: () {},
),
ActionButton(
child: Text("Child 2"),
onPressed: () {},
),
],
),)
copied to clipboard
Additional information #
If you have any issues or feature requests, please file them in the issue tracker.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product: (if this is empty don't purchase this product)

Customer Reviews

There are no reviews.