hawk_fab_menu 1.1.0 copy "hawk_fab_menu: ^1.1.0" to clipboard
hawk_fab_menu: ^1.1.0 copied to clipboard

outdated

A customization floating action button menu that will pop up small fabs on top

hawk_fab_menu #

A floating action button menu that will pop up small fabs on top

Example: #

Widget build(BuildContext context) {
  return Scaffold(
    appBar: AppBar(
      title: Text(this.title),
    ),
    body: Builder(
      // builder is used only for the snackbar, if you don't want the snackbar you can remove
      // Builder from the tree
      builder: (BuildContext context) => HawkFabMenu(
        icon: AnimatedIcons.menu_arrow,
        fabColor: Colors.yellow,
        iconColor: Colors.green,
        items: [
          HawkFabMenuItem(
            label: 'Menu 1',
            ontap: () {
              Scaffold.of(context)..hideCurrentSnackBar();
              Scaffold.of(context).showSnackBar(
                SnackBar(content: Text('Menu 1 selected')),
              );
            },
            icon: Icon(Icons.home),
            color: Colors.red,
            labelColor: Colors.blue,
          ),
          HawkFabMenuItem(
            label: 'Menu 2',
            ontap: () {
              Scaffold.of(context)..hideCurrentSnackBar();
              Scaffold.of(context).showSnackBar(
                SnackBar(content: Text('Menu 2 selected')),
              );
            },
            icon: Icon(Icons.comment),
            labelColor: Colors.white,
            labelBackgroundColor: Colors.blue,
          ),
          HawkFabMenuItem(
            label: 'Menu 3 (default)',
            ontap: () {
              Scaffold.of(context)..hideCurrentSnackBar();
              Scaffold.of(context).showSnackBar(
                SnackBar(content: Text('Menu 3 selected')),
              );
            },
            icon: Icon(Icons.add_a_photo),
          ),
        ],
        body: Center(
          child: Text('Center of the screen'),
        ),
      ),
    ),
  );
}

PS #

159
likes
0
pub points
90%
popularity

Publisher

verified publisherdart.nonstopio.com

A customization floating action button menu that will pop up small fabs on top

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on hawk_fab_menu