如何在页面中途启动ListTile?

时间:2019-04-02 10:51:10

标签: dart flutter

我的页面上有一张卡片的ListTile,但我的应用程序中没有AppBar,因此ListTile从页面顶部开始。如果我添加了填充,它会将其添加到ListView中的每张卡片中,然后虽然我可以将卡片放置在页面中的较低位置,但它们之间的空隙很大。有什么方法可以保持我希望在两张卡之间保持较小的间隙,但在ListView开始之前在顶部仅保持较大的间隙?作为参考,我粘贴了以下代码。 (从本质上来说,这是一个Todo列表类型的应用程序,因此有一个FormField从底部弹出,然后您输入一个任务,它出现在ListView的卡片上。)

Widget _buildTodoList() {
  DateTime now = DateTime.now();
  String formattedDate = DateFormat('EEE d MMM').format(now);
  return ListView.builder(
    itemBuilder: (context, index) {
      if(index < _todoItems.length) {
        return ListTile(
          onLongPress: () => _promptRemoveTodoItem(index),
          title: Card(
              elevation: 1.0,
              shape: RoundedRectangleBorder(
                borderRadius: BorderRadius.circular(23.0),
              ),
                semanticContainer: true,
                clipBehavior: Clip.antiAlias, 
                child: Column(
                  children: <Widget>[
                  Container(
                    child: Stack(
                      children: <Widget>[
                      Container(
                      margin: EdgeInsets.fromLTRB(23.5, 27.5, 0.0, 0.0),
                      child: Text("?", 
                              style: TextStyle(
                                fontWeight: FontWeight.bold,
                                fontSize: 16,
                                color: Colors.black54,
                              ),
                      ),
          ),
          Container(
                      margin: EdgeInsets.fromLTRB(23.5, 58.0, 0.0, 0.0),
                      child: Text("${_todoItems[index]}", 
                              style: TextStyle(
                                fontWeight: FontWeight.bold,
                                fontSize: 12,
                                color: Colors.black38,
                              ),
                      ),
                      ),
                      Align(
                        alignment: Alignment.centerRight,
                      child: Container(
                      margin: EdgeInsets.fromLTRB(0.0, 6.5, 20.0, 0.0),
                      child: Text(formattedDate, 
                              style: TextStyle(
                                fontWeight: FontWeight.bold,
                                fontSize: 11,
                                color: Colors.deepOrange[700],
                              ),
                      ),
                      ),
                      ),
          ],
        ),
        height: 100,
        width: 380,
        ),
        ],
        ),
        ),
        );
      }
    },
  );
}

1 个答案:

答案 0 :(得分:0)

我不确定我是否理解您的问题正确,但是如果可以-我看到了一些解决方案:

您可以将填充添加到整个ListView

Padding(padding: EdgeInsets.only(top: 200.0), child: ListView.builder(...),)

您可以在列表的第一位添加空项目:

ListView.builder(itemBuilder: (context, index) {
  if (index == 0) {
    return SizedBox(height: 200.0,);
  } else {
    // todo return your ListTile
  }
},
itemCount: _todoItems.length + 1,)