如何在任何列表视图项的中间添加卡片-颤动?

时间:2020-11-11 11:01:10

标签: android flutter listview dart

I am trying to do like this (image)我正在尝试创建一个博客页面,我需要在ListView本身中进行一些即时修改(管理员方面)。

tried (code) ...可扩展的ListView-加载和滚动也需要时间-其中包含Textfield和其中的一些按钮(更新,删除和取消)

import 'package:flutter/material.dart';

class ExpandableList extends StatefulWidget {
  @override
  _ExpandableListState createState() => _ExpandableListState();
}

class _ExpandableListState extends State<ExpandableList> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: new Scaffold(
        body: new ListView.builder(
          itemCount: 20,
          itemBuilder: (context, i) {
            return new ExpansionTile(
              title: new Text('item$i', style: new TextStyle(fontSize: 20.0, fontWeight: FontWeight.bold, fontStyle: FontStyle.italic),),
              children: <Widget>[
                new Column(
                  children: [TextField(),
                  Row(
                    children: [
                      IconButton(icon: Icon(Icons.update), onPressed: null),
                      IconButton(icon: Icon(Icons.remove), onPressed: null),
                      IconButton(icon: Icon(Icons.cancel), onPressed: null)
                    ],
                  )],
                ),
              ],
            );
          },
        ),
      ),
    );
  }
}

我的要求是将该卡放在我单击的项目下方(仅),否则该卡不应该与该项目列表一起预先构建。

0 个答案:

没有答案