grouped_action_buttons

Last updated:

0 purchases

grouped_action_buttons Image
grouped_action_buttons Images
Add to Cart

Description:

grouped action buttons

Create grouped FloatingActionButton which can expand and collapse some widgets with animation.

Features #

Create FloatingActionButton with expandable children so easily
Makes your code clean and readable

Getting started #
Import:
import 'package:grouped_action_buttons/grouped_action_buttons_package.dart';
copied to clipboard
Usage #
you can also checkout example application
GroupedActionButtons(
distance: 112,
openButtonIcon: const Icon(Icons.edit),
closeButtonIcon: const Icon(Icons.close),
children: [
ActionButton(
onPressed: () => print('b1'),
backgroundColor: Colors.red,
icon: const Icon(Icons.abc_rounded),
),
ActionButton(
onPressed: () => print('b2'),
icon: const Icon(Icons.ac_unit),
),
ActionButton(
onPressed: () => print('b3'),
icon: const Icon(Icons.access_alarms),
),
],
),
copied to clipboard
Additional information #
for more info checkout github repository.
Package repository: https://github.com/aminJamali/grouped-action-buttons

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.