zoukankan      html  css  js  c++  java
  • flutter 侧滑删除+侧滑显示删除按钮

    1、侧滑删除

      1.1、Dismissible组件

    2、侧滑显示删除按钮

      2.1、手势监听水平滑动

    ------------------------------------分割线--------------------------------------------------------

    dismissRemove.dart   

    import 'package:flutter/material.dart';
    import 'package:flutter/foundation.dart';
    
    class Dismessremove extends StatelessWidget {
      final title = '滑动删除';
      final List<String> items  =  new List<String>.generate(20, (i) => "Item ${i + 1}");
      @override
      Widget build(BuildContext context) {
        return Scaffold(
          appBar: new AppBar(
            leading: IconButton(
                icon: Icon(Icons.arrow_back),
                onPressed: () {
                  Navigator.pop(context); // 返回
                }),
            title: new Text(title),
          ),
          body: new ListView.builder(
            itemCount: items.length,
            itemBuilder: (context, index) {
              final item = items[index];
              return new Dismissible(
                // Each Dismissible must contain a Key. Keys allow Flutter to
                // uniquely identify Widgets.
                key: new Key(item),
                // We also need to provide a function that will tell our app
                // what to do after an item has been swiped away.
                onDismissed: (direction) {
                  items.removeAt(index);
                  Scaffold.of(context).showSnackBar(
                      new SnackBar(content: new Text("$item dismissed")));
                },
                // Show a red background as the item is swiped away
                background: new Container(color: Colors.red),
                child: new ListTile(title: new Text('$item'),),
              );
            },
          ),
        );
      }
    }

    效果就是滑动一下就马上删除数据,非常的突兀。

    dismissshow.dart  

    import 'package:flutter/material.dart';
    import 'package:flutter/foundation.dart';
    
    class Dismessshow extends StatefulWidget {
      @override
      _Dismessshow createState() => _Dismessshow();
    }
    
    class _Dismessshow extends State<Dismessshow> {
      final title = '滑动显示';
    //  final List<String> items  =  [
    //    '1','2'
    //  ];
    //  final List<Map> items  =  [
    //    {'name': 'xxx', 'show': false}
    //  ];
      final List<Map> items = new List<Map>.generate(20, (i) {
        return {'name': 'item${i}', 'show': false};
      });
      change(index) {
        print('xxx');
      }
    
      @override
      Widget build(BuildContext context) {
        return Scaffold(
          appBar: new AppBar(
            leading: IconButton(
                icon: Icon(Icons.arrow_back),
                onPressed: () {
                  Navigator.pop(context); // 返回
                }),
            title: new Text(title),
          ),
          body: new ListView.builder(
            itemCount: items.length,
            itemBuilder: (context, index) {
              final item = items[index];
              return new GestureDetector(
    //              onHorizontalDragStart:(startDetails){},
                onHorizontalDragEnd: (endDetails) {
                  // 怎么判断方向还是个问题
                  setState(() {
                    items[index]['show'] =
                        items[index]['show'] == true ? false : true;  // items[index]['show']!= items[index]['show'] 这样不行为啥
                  });
                },
                child: new Container(
                  height: 40.0,
    //              color: Colors.amber,
                  padding: const EdgeInsets.only(left: 10.0),
                  decoration: new BoxDecoration(
                      border: new Border(
                    bottom: BorderSide(color: Colors.amber,  0.5),
                  )),
                  child: new Row(
                    children: <Widget>[
                      item['show'] == true
                          ? new RaisedButton(
                              child: new Text('remove'),
                              onPressed: () {
                                print('click');
                                setState(() {
                                  items.removeAt(index);
                                });
                                Scaffold.of(context).showSnackBar(
                                    new SnackBar(content: new Text('${item["name"]} is dismissed')));
                              },
                              color: Colors.yellow,
                              splashColor: Colors.pink[100])
                          : new Text(''),
                      new Text(item['name'])
                    ],
                  ),
                ),
              );
            },
          ),
        );
      }
    }

    效果如下

              

     github:https://github.com/ft1107949255/kiminitodoke

  • 相关阅读:
    CentOS7安装注意
    ES插件安装
    CentOS7命令
    ES安装手册
    五 、redis-cluster java api
    四 、Redis 集群的搭建
    三 redis 的 java api(jedis)
    C#验证码 使用GDI绘制验证码
    云时代架构阅读笔记二——Java性能优化(二)
    【转载】Asp .Net Web Api路由路径问题
  • 原文地址:https://www.cnblogs.com/shuangzikun/p/taotao_flutter_remove.html
Copyright © 2011-2022 走看看