animated_fab 0.0.1
animated_fab: ^0.0.1 copied to clipboard
A Flutter package contains an animated floating action button.
Animated_FAB #
A flutter package contains an animated floating action button.
Demo #

How to #
bottomNavigationBar: BottomNavigationBar(
items: const [
BottomNavigationBarItem(icon: Icon(Icons.home), label: ""),
BottomNavigationBarItem(icon: Icon(Icons.settings), label: ""),
],
),
floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked,
floatingActionButton: AnimatedFAB(
animatedBox: //here add a child (widget/widget tree to apperar as action box when the floatingActionButton is pressed)
// you can add other neccessary parameters such as actionBoxHeight, actionBoxWidth, buttonColor, buttonHeight, buttonWidth, durationInMilliseconds, buttonDistanceFromButton, buttonBorderRadius.
),