flutter_speed_dial_material_design icon indicating copy to clipboard operation
flutter_speed_dial_material_design copied to clipboard

Flutter plugin to implement a Material Design Speed Dial (https://material.io/components/buttons-floating-action-button/#types-of-transitions)

Results 7 flutter_speed_dial_material_design issues
Sort by recently updated
recently updated
newest added

The inbuilt FAB can be disabled by setting `onPressed:null` Suggestion to add a property `isDisabled` to which we can set a boolean variable which can be changed to true or...

Usage: return SpeedDialFloatingActionButton( actions: icons, childOnFold: Icon(Icons.menu_rounded, key: UniqueKey()), labelBackgroundColor: MyApp.bg, labelShadowColor: Colors.grey.withOpacity(0.1), );

Good work guys I like this lib but I faced this bug where floatingActionButton remains visible despite bottomBar being hidden in previous route. here is the code. ```dart class HomePage...

bug

I don't know if only I have experienced this or maybe you guys have also experienced it. When I rotate the view from landscape -> portrait or vice versa, the...

bug

The speed dial is good. Just thought of a Possible Enhancement. When defining the SpeedDialAction `SpeedDialAction(child: Icon(Icons.list), label: Text('Menu', style: customStyle), onTap: () {},),` there can be a "onTap" property...

enhancement

I currently have the speed dial FAB notched into the center of my bottom nav bar and it looks great. ![image](https://user-images.githubusercontent.com/17204940/80316843-08853780-87b5-11ea-8d35-b4ef7abcff6b.png) I noticed that when the keyboard is activated, the...

question