flutter_expandable_fab 1.3.0 copy "flutter_expandable_fab: ^1.3.0" to clipboard
flutter_expandable_fab: ^1.3.0 copied to clipboard

outdated

Speed dial FAB that can show/hide multiple action buttons with animation.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_expandable_fab/flutter_expandable_fab.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  final _counter = ValueNotifier(0);

  MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        useMaterial3: true,
        colorSchemeSeed: Colors.blue,
      ),
      home: Scaffold(
        body: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: <Widget>[
              const Text(
                'You have pushed the button this many times:',
              ),
              ValueListenableBuilder(
                valueListenable: _counter,
                builder: (context, counter, _) {
                  return Text(
                    '$counter',
                    style: Theme.of(context).textTheme.displayMedium,
                  );
                },
              ),
              ElevatedButton.icon(
                icon: const Icon(Icons.add),
                label: const Text('add'),
                onPressed: () => _counter.value++,
              ),
            ],
          ),
        ),
        floatingActionButton: ExpandableFab(
          // duration: const Duration(seconds: 1),
          // distance: 60.0,
          // type: ExpandableFabType.up,
          // fanAngle: 70,
          // child: const Icon(Icons.account_box),
          // foregroundColor: Colors.amber,
          // backgroundColor: Colors.green,
          // closeButtonStyle: const ExpandableFabCloseButtonStyle(
          //   child: Icon(Icons.abc),
          //   foregroundColor: Colors.deepOrangeAccent,
          //   backgroundColor: Colors.lightGreen,
          // ),
          overlayStyle: ExpandableFabOverlayStyle(
            color: Colors.black.withOpacity(0.5),
            // blur: 5,
          ),
          children: [
            FloatingActionButton.small(
              heroTag: null,
              child: const Icon(Icons.edit),
              onPressed: () {},
            ),
            FloatingActionButton.small(
              heroTag: null,
              child: const Icon(Icons.search),
              onPressed: () {},
            ),
            FloatingActionButton.small(
              heroTag: null,
              child: const Icon(Icons.share),
              onPressed: () {},
            ),
          ],
        ),
      ),
    );
  }
}
229
likes
0
pub points
97%
popularity

Publisher

verified publisherzuvola.com

Speed dial FAB that can show/hide multiple action buttons with animation.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_expandable_fab