haydenflinner / flutter_speed_dialer

A FAB speed dialer for Flutter.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

flutter_speed_dialer

A FAB Speed Dialer for flutter that actually works.

Taken verbatim from Collin Jackson's StackOverflow post.

Demo gif

Getting Started

Just add a SpeedDialer as your FAB within a scaffold, like this:

floatingActionButton:
    new SpeedDialer(children: modeButtons));

where you define the buttons that will pop out like this:

    List<Widget> modeButtons = [
      new SpeedDialerButton(backgroundColor: Colors.blue,
          icon: Icons.directions_bike, onPressed: () => print("Clicked"), text: "hi!")];

For help getting started with Flutter, view our online documentation.

For help on editing package code, view the documentation.

About

A FAB speed dialer for Flutter.

License:Other


Languages

Language:Dart 100.0%