grouped_action_buttons 0.0.1 copy "grouped_action_buttons: ^0.0.1" to clipboard
grouped_action_buttons: ^0.0.1 copied to clipboard

grouped FloatingActionButton package with expandable children.

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';

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),
    ),
    ],
),

Additional information #

for more info checkout github repository. Package repository: https://github.com/aminJamali/grouped-action-buttons

7
likes
0
pub points
72%
popularity

Publisher

unverified uploader

grouped FloatingActionButton package with expandable children.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on grouped_action_buttons