Answers for "flutter expandable floating action button"

0

flutter expandable floating action button

@immutable
class ExpandableFab extends StatefulWidget {
 const ExpandableFab({
   Key? key,
   this.initialOpen,
   required this.distance,
   required this.children,
 }) : super(key: key);

 final bool? initialOpen;
 final double distance;
 final List<Widget> children;

 @override
 _ExpandableFabState createState() => _ExpandableFabState();
}

class _ExpandableFabState extends State<ExpandableFab> {

 @override
 Widget build(BuildContext context) {
   return SizedBox();
 }
}
Posted by: Guest on September-17-2021

Code answers related to "flutter expandable floating action button"

Browse Popular Code Answers by Language