floatingpanel 1.1.3 copy "floatingpanel: ^1.1.3" to clipboard
floatingpanel: ^1.1.3 copied to clipboard

Floating panel helps you create easy floating menu which you can drag and drop to any edge of the screen (horizontally).

example/main.dart

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

class Homepage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Stack(
          children: [
            // Add Float Box Panel at the bottom of the 'stack' widget.
            FloatBoxPanel(
              //Customize properties
              backgroundColor: Color(0xFF222222),
              panelShape: PanelShape.rectangle,
              borderRadius: BorderRadius.circular(8.0),

              buttons: [
                // Add Icons to the buttons list.
                Icons.message,
                Icons.photo_camera,
                Icons.video_library
              ],
            ),
          ],
        ),
      ),
    );
  }
}
130
likes
30
points
40
downloads

Publisher

unverified uploader

Weekly Downloads

Floating panel helps you create easy floating menu which you can drag and drop to any edge of the screen (horizontally).

Repository (GitHub)

License

unknown (license)

Dependencies

flutter

More

Packages that depend on floatingpanel