floating_action_row 0.0.1 floating_action_row: ^0.0.1 copied to clipboard
A Flutter package that provides a widget with a row of floating action buttons.
floating_action_row #
A Flutter package that provides a widget with a row of floating action buttons.
Usage #
To use this plugin, add floating_action_row
as a dependency in your pubspec.yaml file.
This package contains three Widgets: FloatingActionRow
, FloatingActionRowButton
and FloatingActionRowDivider
.
FloatingActionRow #
Property | Type | Description | Default |
---|---|---|---|
children | List<'FloatingActionRowChild'> | Children of this widget | - |
elevation | double | Drop shadow | 6 |
color | Color | Background color | - |
height | double | - | 56 |
padding | EdgeInsets | - | EdgeInsets.all(0) |
borderRadius | BorderRadius | - | - |
shape | ShapeBorder | - | - |
heroTag | String | Tag for Hero animations | - |
Note: FloatingActionRowButton
and FloatingActionRowDivider
both extend FloatingActionRowChild
so that you can use those two widgets as children.
FloatingActionRowButton #
Property | Type | Description | Default |
---|---|---|---|
icon | Icon | Child of this widget | - |
color | Color | Foreground color for [icon] | - |
size | double | - | - |
padding | EdgeInsets | - | EdgeInsets.all(0) |
shape | ShapeBorder | - | - |
backgroundColor | Color | - | Colors.transparent |
onTap | GestureTapCallback | - | - |
FloatingActionRowDivider #
Property | Type | Description | Default |
---|---|---|---|
color | Color | - | - |
width | double | - | 1 |
padding | EdgeInsets | - | EdgeInsets.symmetric(vertical: 10) |
Issues & Feedback #
Please file an issue to send feedback or report a bug. Thank you!
Contributing #
Every pull request is welcome.