WatchOs 上不显示 ScrollView 中的列表 [英] List inside ScrollView is not displayed on WatchOs

查看:23
本文介绍了WatchOs 上不显示 ScrollView 中的列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在滚动视图中有一个列表,它没有显示在图像和按钮下方.我还尝试将列表和其他项目放在 VStack 中,这样我就可以看到列表中的一个项目,而不是滚动过去图像和按钮以显示整个列表.

I have a list inside a scrollview and it is not displaying below the image and the buttons. I've also tried to put the list and other items inside of a VStack and that allows me to see one item of the list at the time opposed to scrolling past the Image and buttons to show the whole list.

    ScrollView{
        Image(uiImage: self.image)
            .resizable()
            .frame(width: 80, height: 80)
            .scaledToFit()

        Text("\(name)")
            .lineLimit(2)
        HStack{
            Button(action: {
                print("button1")
            }){
                Image(systemName: "pencil")
            }
            Button(action: {
                print("button 2")
            }){
                Image(systemName: "trash")

            }
        }
        List{
            ForEach(self.items, id: \.self) { item in
                VStack{
                    Text(item.name)
                        .font(.headline)
                        .lineLimit(1)

                    Text(item.subname)
                        .font(.subheadline)
                        .lineLimit(1)
                }
            }
        }
    }
    .navigationBarTitle(Text("Tittle"))
    .edgesIgnoringSafeArea(.bottom)

我也尝试添加 .frame( minHeight: 0, maxHeight: .infinity) 到列表中以强制它具有其整个高度,但这也不起作用.任何建议或者这可能是一个 swiftUI 错误?

Ive also tried to add .frame( minHeight: 0, maxHeight: .infinity) to the list to force it to have its whole height and that did not work either. Any suggestions or might this be a swiftUI bug ?

编辑

我刚刚意识到滚动时出现此错误:

I just realized Im getting this error when scrolling:

APPNAME Watch Extension[336:60406] [detents] could not play detent NO, 2, Error Domain=NSOSStatusErrorDomain Code=-536870187 "(null)", (
        {
        Gain = "0.01799999922513962";
        OutputType = 0;
        SlotIndex = 4;
    },
        {
        Gain = "0.6000000238418579";
        OutputType = 1;
        SlotIndex = 5;
    }
)

推荐答案

为您的列表指定一些高度,例如

Indicate some height for your List like

 List{
      ForEach(self.items, id: \.self) { item in
          VStack{
              Text(item.name)
                   .font(.headline)
                   .lineLimit(1)

              Text(item.subname)
                   .font(.subheadline)
                   .lineLimit(1)
          }
      }
 }.frame(minHeight: 200, maxHeight: .infinity)

这篇关于WatchOs 上不显示 ScrollView 中的列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆