- Notifications
You must be signed in to change notification settings - Fork624
A Flutter implementation of slidable list item with directional slide actions.
License
letsar/flutter_slidable
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Slidable is aFlutter Favorite package!
A Flutter implementation of slidable list item with directional slide actions that can be dismissed.
Our top sponsors are shown below! [Become a Sponsor]
Try the Flutter Chat Tutorial 💬 | Your complete platform for sending notifications |
You can read this small guide to migrate from the 0.6 to the 1.0 version:https://github.com/letsar/flutter_slidable/wiki/Migration-from-version-0.6.0-to-version-1.0.0
- Accepts start (left/top) and end (right/bottom) action panes.
- Can be dismissed.
- 4 built-in action panes.
- 2 built-in slide action widgets.
- 1 built-in dismiss animation.
- You can easily create custom layouts and animations.
- You can use a builder to create your slide actions if you want special effects during animation.
- Closes when a slide action has been tapped (overridable).
- Closes when the nearest
Scrollable
starts to scroll (overridable). - Option to disable the slide effect easily.
In thepubspec.yaml
of your flutter project, add the following dependency:
dependencies:flutter_slidable:<latest_version>
In your library add the following import:
import'package:flutter_slidable/flutter_slidable.dart';
Example:
Slidable(// Specify a key if the Slidable is dismissible. key:constValueKey(0),// The start action pane is the one at the left or the top side. startActionPane:ActionPane(// A motion is a widget used to control how the pane animates. motion:constScrollMotion(),// A pane can dismiss the Slidable. dismissible:DismissiblePane(onDismissed: () {}),// All actions are defined in the children parameter. children:const [// A SlidableAction can have an icon and/or a label.SlidableAction( onPressed: doNothing, backgroundColor:Color(0xFFFE4A49), foregroundColor:Colors.white, icon:Icons.delete, label:'Delete', ),SlidableAction( onPressed: doNothing, backgroundColor:Color(0xFF21B7CA), foregroundColor:Colors.white, icon:Icons.share, label:'Share', ), ], ),// The end action pane is the one at the right or the bottom side. endActionPane:constActionPane( motion:ScrollMotion(), children: [SlidableAction(// An action can be bigger than the others. flex:2, onPressed: doNothing, backgroundColor:Color(0xFF7BC043), foregroundColor:Colors.white, icon:Icons.archive, label:'Archive', ),SlidableAction( onPressed: doNothing, backgroundColor:Color(0xFF0392CF), foregroundColor:Colors.white, icon:Icons.save, label:'Save', ), ], ),// The child of the Slidable is what the user sees when the// component is not dragged. child:constListTile(title:Text('Slide me')),),
AnyActionPane
has a motion parameter which allow you to define how the pane animates when the user drag theSlidable
.
The actions appear as if they where behind theSlidable
:
Animate the actions as if they were drawers, when theSlidable
is moving:
The actions follow theSlidable
while it's moving:
Animate the actions as if they were streched while theSlidable
is moving:
You can useSlidableController
to open or close the actions programmatically:
final controller=SlidableController();// ...Slidable( controller: controller,// ...);// ...// Open the actionsvoid_handleOpen() { controller.openEndActionPane();// OR//controller.openStartActionPane();}void_handleOpen() { controller.close();}
You can read the FAQ here:https://github.com/letsar/flutter_slidable/wiki/FAQ
I'm working on my packages on my free-time, but I don't have as much time as I would. If this package or any other package I created is helping you, please consider to sponsor me so that I can take time to read the issues, fix bugs, merge pull requests and add features to these packages.
Feel free to contribute to this project.
If you find a bug or want a feature, but don't know how to fix/implement it, please fill anissue.
If you fixed a bug or implemented a feature, please send apull request.
About
A Flutter implementation of slidable list item with directional slide actions.