flutter add widgets on top and bottom to a listview

后端 未结 4 1230
渐次进展
渐次进展 2021-02-05 23:37

Trying to add some widgets to before of a listview.... I searched and found to use expanded like:

  return Scaffold(
    appBar: AppBar(
      title: Text(\'Test         


        
4条回答
  •  一个人的身影
    2021-02-06 00:04

    body: Container(
      width: MediaQuery.of(context).width,
      height: MediaQuery.of(context).height,
      child: ListView(
         children: Widget[
           Container(
             width: MediaQuery.of(context).width,
             height: 50,
             alignment: AlignmentDirectional.center
             child: Text("HEADER")
          ),
          for(var i =0;i

提交回复
热议问题