- Notifications
You must be signed in to change notification settings - Fork76
A simple animated radial menu widget for Flutter.
License
NotificationsYou must be signed in to change notification settings
xqwzts/flutter_radial_menu
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
A radial menu widget for Flutter.
Install the latest versionfrom pub.
Import the package, create aRadialMenu and pass it yourRadialMenuItems.
import'package:flutter/material.dart';import'package:flutter_radial_menu/flutter_radial_menu.dart';voidmain() {runApp(newMaterialApp( home:newScaffold( body:newCenter( child:newRadialMenu( items:<RadialMenuItem<int>>[constRadialMenuItem<int>( value:1, child:constIcon(Icons.add), ),constRadialMenuItem<int>( value:-1, child:constIcon(Icons.remove), ) ], radius:100.0, onSelected: print, ), ), ), ), );}
Take a look at thedemo for a more elaborate example.
| Parameter | Default | Description |
|---|---|---|
| child | null | Usually an Icon widget, gets placed in the center of the button. |
| value | null | Value that gets returned when this item is selected. |
| tooltip | null | Tooltip displayed when the button is long-pressed. |
| size | 48.0 | Size of the button. |
| backgroundColor | Theme.of(context).primaryColor | Background fill color of the button. |
| iconColor | Theme.of(context).primaryIconTheme.color | The color of the child icon. |
| Parameter | Default | Description |
|---|---|---|
| items | null | The list of possible items to select from. |
| onSelected | null | Called when the user selects an item. |
| radius | 100.0 | The radius of the arc used to lay out the items and draw the progress bar. |
| menuAnimationDuration | 1000 milliseconds | Duration of the menu opening/closing animation. |
| progressAnimationDuration | 1000 milliseconds | Duration of the action activation progress arc animation. |
About
A simple animated radial menu widget for Flutter.
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
No releases published
Packages0
No packages published
Uh oh!
There was an error while loading.Please reload this page.

