app_float_button 0.0.3 copy "app_float_button: ^0.0.3" to clipboard
app_float_button: ^0.0.3 copied to clipboard

A Flutter package that provides customizable floating action buttons and animated speed dial menus for quick access to multiple actions.

example/main.dart

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

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'App Float Button Demo',
      theme: ThemeData(primarySwatch: Colors.blue),
      home: const HomePage(),
    );
  }
}

class HomePage extends StatelessWidget {
  const HomePage({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: const Text('App Float Button Example')),
      body: const Center(child: Text('Press the floating button')),
      floatingActionButton: AppFloatingActionBtn(
        icon: Icons.add,
        label: 'Add',
        onPressed: () {},
      ),
    );
  }
}
0
likes
150
points
171
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A Flutter package that provides customizable floating action buttons and animated speed dial menus for quick access to multiple actions.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on app_float_button