Skip to content

TrendingTechnology/fab-circular-menu

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FAB Circular Menu

Pub Pull Requests are welcome Pull Requests are welcome Codemagic build status

A Flutter package to create a nice circular menu using a Floating Action Button.

Inspired by Mayur Kshirsagar's great FAB Microinteraction design.

Showcase

Getting started

Wrap your content with FabCircularMenu and set your desired options:

MaterialApp(
  home: Scaffold(
    body: FabCircularMenu(
      child: Placeholder(), // Replace this with your content
      options: <Widget>[
        IconButton(icon: Icon(Icons.home), onPressed: () {
          print('Pressed!');
        })
      ]
    )
  )
)

Options

Property Type Description Default Caveat
required child Widget The child of this widget -
required options List The available options of the menu -
ringColor Color The color of the ring Colors.white
ringDiameter double The diameter of the ring screenWidth * 1.2
ringWidth double The width of the ring ringDiameter / 3
fabMargin EdgeInsets The margin around the FAB EdgeInsets.all(24.0)
fabColor Color The color of the FAB primaryColor
fabOpenColor Color The color of the FAB when opened primaryColor Will override fabColor for open state
fabCloseColor Color The color of the FAB when closed primaryColor Will override fabColor for close state
fabOpenIcon Icon The open icon Icon(Icons.menu)
fabCloseIcon Icon The close icon Icon(Icons.close)
animationDuration Duration The animation duration Duration(milliseconds: 800)
onDisplayChange Function A callback called when the open/close state changes Function
controller FabCircularMenuController A controller for opening or closing the menu null

About

A Flutter package to create a nice circular menu using a Floating Action Button.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 83.4%
  • Ruby 6.0%
  • Shell 4.5%
  • Swift 3.2%
  • Kotlin 2.6%
  • Objective-C 0.3%