flutter 中使用flutter_slidable 实现左滑显示删除、修改菜单,仿微信

本文主要是介绍flutter 中使用flutter_slidable 实现左滑显示删除、修改菜单,仿微信,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

flutter pub add flutter_slidable

导入

import 'package:flutter_slidable/flutter_slidable.dart';

使用

import 'package:flutter/material.dart';
import 'package:flutter_slidable/flutter_slidable.dart';void main() => runApp(const MyApp());class MyApp extends StatelessWidget {const MyApp({Key? key,}) : super(key: key);@overrideWidget build(BuildContext context) {return MaterialApp(title: 'Slidable Example',home: Scaffold(body: ListView(children: [Slidable(// Specify a key if the Slidable is dismissible.key: const ValueKey(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: const ScrollMotion(),// 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: const ActionPane(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: const ListTile(title: Text('Slide me')),),Slidable(// Specify a key if the Slidable is dismissible.key: const ValueKey(1),// The start action pane is the one at the left or the top side.startActionPane: const ActionPane(// A motion is a widget used to control how the pane animates.motion: ScrollMotion(),// All actions are defined in the children parameter.children: [// 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: ActionPane(motion: const ScrollMotion(),dismissible: DismissiblePane(onDismissed: () {}),children: const [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: const ListTile(title: Text('Slide me')),),],),),);}
}void doNothing(BuildContext context) {}

ActionPane的参数说明

ActionPane(key: Key(UniqueKey().toString()),extentRatio:0.2,// 滑动动效// DrawerMotion() StretchMotion()// motion: ScrollMotion(),motion: BehindMotion(),children: const [// 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',),],),

实现只有同时只有一个滑块

SlidableAutoCloseBehavior 包住listview部分代码就可以

          body:SlidableAutoCloseBehavior(child: ListView.builder(controller: _scrollController,//需要controller ,不然异常itemCount: datas.length,key: Key(UniqueKey().toString()),itemBuilder: (BuildContext context, int index) { return Slidable(// 禁用滑动enabled:true,dragStartBehavior:DragStartBehavior.start,// key:  ValueKey(index), // 设置只能有一个滑块key: Key(UniqueKey().toString()),// 右滑滑动显示的菜单// startActionPane: ActionPane(//   key: Key(UniqueKey().toString()),//   // A motion is a widget used to control how the pane animates.//   motion: const ScrollMotion(),//   // A pane can dismiss the Slidable.//   dismissible: DismissiblePane(onDismissed: () {//     print("点击了");//   }),//   // 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',//     ),//   ],// ),//左滑划出的菜单endActionPane:  ActionPane(key: Key(UniqueKey().toString()),// 菜单宽度extentRatio:0.2,dragDismissible:false,// 滑动动效// DrawerMotion() StretchMotion()// motion: ScrollMotion(),motion: BehindMotion(),children: const [// 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',),],),child: ListTile(title: Text('Slide me')),);},),)

这篇关于flutter 中使用flutter_slidable 实现左滑显示删除、修改菜单,仿微信的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/638130

相关文章

Conda与Python venv虚拟环境的区别与使用方法详解

《Conda与Pythonvenv虚拟环境的区别与使用方法详解》随着Python社区的成长,虚拟环境的概念和技术也在不断发展,:本文主要介绍Conda与Pythonvenv虚拟环境的区别与使用... 目录前言一、Conda 与 python venv 的核心区别1. Conda 的特点2. Python v

Spring Boot中WebSocket常用使用方法详解

《SpringBoot中WebSocket常用使用方法详解》本文从WebSocket的基础概念出发,详细介绍了SpringBoot集成WebSocket的步骤,并重点讲解了常用的使用方法,包括简单消... 目录一、WebSocket基础概念1.1 什么是WebSocket1.2 WebSocket与HTTP

C#中Guid类使用小结

《C#中Guid类使用小结》本文主要介绍了C#中Guid类用于生成和操作128位的唯一标识符,用于数据库主键及分布式系统,支持通过NewGuid、Parse等方法生成,感兴趣的可以了解一下... 目录前言一、什么是 Guid二、生成 Guid1. 使用 Guid.NewGuid() 方法2. 从字符串创建

Python使用python-can实现合并BLF文件

《Python使用python-can实现合并BLF文件》python-can库是Python生态中专注于CAN总线通信与数据处理的强大工具,本文将使用python-can为BLF文件合并提供高效灵活... 目录一、python-can 库:CAN 数据处理的利器二、BLF 文件合并核心代码解析1. 基础合

Python使用OpenCV实现获取视频时长的小工具

《Python使用OpenCV实现获取视频时长的小工具》在处理视频数据时,获取视频的时长是一项常见且基础的需求,本文将详细介绍如何使用Python和OpenCV获取视频时长,并对每一行代码进行深入解析... 目录一、代码实现二、代码解析1. 导入 OpenCV 库2. 定义获取视频时长的函数3. 打开视频文

golang版本升级如何实现

《golang版本升级如何实现》:本文主要介绍golang版本升级如何实现问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录golanwww.chinasem.cng版本升级linux上golang版本升级删除golang旧版本安装golang最新版本总结gola

SpringBoot中SM2公钥加密、私钥解密的实现示例详解

《SpringBoot中SM2公钥加密、私钥解密的实现示例详解》本文介绍了如何在SpringBoot项目中实现SM2公钥加密和私钥解密的功能,通过使用Hutool库和BouncyCastle依赖,简化... 目录一、前言1、加密信息(示例)2、加密结果(示例)二、实现代码1、yml文件配置2、创建SM2工具

Mysql实现范围分区表(新增、删除、重组、查看)

《Mysql实现范围分区表(新增、删除、重组、查看)》MySQL分区表的四种类型(范围、哈希、列表、键值),主要介绍了范围分区的创建、查询、添加、删除及重组织操作,具有一定的参考价值,感兴趣的可以了解... 目录一、mysql分区表分类二、范围分区(Range Partitioning1、新建分区表:2、分

MySQL 定时新增分区的实现示例

《MySQL定时新增分区的实现示例》本文主要介绍了通过存储过程和定时任务实现MySQL分区的自动创建,解决大数据量下手动维护的繁琐问题,具有一定的参考价值,感兴趣的可以了解一下... mysql创建好分区之后,有时候会需要自动创建分区。比如,一些表数据量非常大,有些数据是热点数据,按照日期分区MululbU

Spring IoC 容器的使用详解(最新整理)

《SpringIoC容器的使用详解(最新整理)》文章介绍了Spring框架中的应用分层思想与IoC容器原理,通过分层解耦业务逻辑、数据访问等模块,IoC容器利用@Component注解管理Bean... 目录1. 应用分层2. IoC 的介绍3. IoC 容器的使用3.1. bean 的存储3.2. 方法注