animated_floating_button_pro

Last updated:

0 purchases

animated_floating_button_pro Image
animated_floating_button_pro Images
Add to Cart

Description:

animated floating button pro

A Flutter package to use animatedFloatingButton.
Features #

🚀 Cross platform: mobile, desktop, browser
❤️ Simple
🎈 NO native dependencies

Getting started #
You can use AnimatedFloatingButton by calling AnimatedFloatingButton .
to avoid shadow padding issue set floatingActionButtonLocation
floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked,
copied to clipboard
Example
floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked,
floatingActionButton: AnimatedFloatingButton(
shape: const CircleBorder(),
padding: const EdgeInsets.all(16),
childrenProps: [
FloatingButtonProps(
label: "First",
icon: Icons.one_x_mobiledata,
action: () => ScaffoldMessenger.of(context).showSnackBar(const SnackBar(content: Text("First"))),
),
FloatingButtonProps(
label: "Second",
customIcon: const Text('2'),
labelDecoration: BoxDecoration(
color: Colors.green,
borderRadius: BorderRadius.circular(8),
),
labelStyle: const TextStyle(color: Colors.white),
action: () => ScaffoldMessenger.of(context).showSnackBar(const SnackBar(content: Text("Second"))),
),
],
)
copied to clipboard

License:

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

Files In This Product:

Customer Reviews

There are no reviews.