简体   繁体   English

在未来构建器中的 ListView 构建器中水平滚动 - Flutter

[英]Scroll horizontally in ListView builder within a Future builder - Flutter

I am trying to create a horizontally scrollable list of cards but it breaks each.我正在尝试创建一个水平滚动的卡片列表,但它打破了每一个。 I am just not sure where I am going wrong.我只是不确定我哪里出错了。 I tried adding Expandable in several places and I still get errors.我尝试在几个地方添加 Expandable ,但仍然出现错误。

I am hoping this is resolvable or do I need to separate each element within the Container/Column (2nd one).我希望这是可以解决的,或者我是否需要分隔容器/列中的每个元素(第二个)。

It is definitely some sort of sizing I am missing but just not able to pinpoint where.这绝对是我缺少的某种尺寸,但无法确定在哪里。

body: SafeArea(
        child: Column(
          children: [
            Container(
              child: Column(
                crossAxisAlignment: CrossAxisAlignment.start,
                children: [
                  SizedBox(...),
                  Padding(...),
                  Padding(...),
                  SizedBox(...),
                  Padding(...),
                  SizedBox(...),
                  Padding(...),
                  SizedBox(...),
                  Container(
                    height: 200,
                    color: Colors.blue[200],
                    child: ListView(
                      shrinkWrap: true,
                      physics: ScrollPhysics(),
                      scrollDirection: Axis.vertical,
                      children: [
                        FutureBuilder(
                          future: getAudioList(),
                          builder: (context, data) {
                            if (data.hasError) {
                              return Center(child: Text("${data.error}"));
                            } else if (data.hasData) {
                              var items = data.data as List<MyOtherFunc>;
                              var categories;
                              //Split into categories
                              if (items != null) {
                                categories = groupBy(
                                    items, (MyOtherFunc ma) => ma.category);
                                Map<String, List<MindfulAudio>> catMap =
                                    categories;
                                return new ListView.builder(
                                  padding:
                                      const EdgeInsets.fromLTRB(8, 0, 8, 0),
                                  itemCount: catMap.length,
                                  physics:
                                      const AlwaysScrollableScrollPhysics(),
                                  shrinkWrap: true,
                                  itemBuilder: (context, index) {
                                    String key = catMap.keys.elementAt(index);
                                    return Card(
                                      child: ListTile(
                                        onTap: () {
                                          Navigator.push(
                                            context,
                                            MaterialPageRoute(
                                              builder: (context) =>
                                                  MyFunc(
                                                      catMap[key], key),
                                            ),
                                          );
                                        },
                                        leading: Icon(icons[index],
                                            size: 25, color: colour[index]),
                                        title: new Text("$key"),
                                        trailing: new IconButton(
                                            onPressed: () {
                                              Navigator.push(
                                                context,
                                                MaterialPageRoute(
                                                  builder: (context) =>
                                                      MyFunc(
                                                          catMap[key], key),
                                                ),
                                              );
                                            },
                                            icon: Icon(
                                              FontAwesomeIcons.chevronRight,
                                              color: PINK,
                                            )),
                                      ),
                                    );
                                  },
                                );
                              }
                              return Center(
                                child: CircularProgressIndicator(),
                              );
                            } else {
                              return Center(
                                child: CircularProgressIndicator(),
                              );
                            }
                          },
                        ),
                      ],
                    ),
                  ),
                ],
              ),
            ),
          ],
        ),
      ),

Try this layout试试这个布局

SizedBox(
 height: MediaQuery.of(context).size.height,
 width : MediaQuery.of(context).size.width,
 child: SingleChildScrollView (
  child: Column(
   children: [
    //Other widgets which will scroll vertically in the column
     SingleChildScrollView (
      scrollDirection: Axis.horizontal,
      child: Row(
      mainAxisSize: MainAxisSize.min,
        children: [
         //Items you wish to scroll horizontally 
       ]
      )
    ),
    //Some more widgets if you wish to add below the horizontal scroll
   ]
  )
 )
)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM