2

对于 WatchOS,我正在尝试构建一个自动滚动到添加到列表中的最后一项的 ScrollView。这一切都很好,但是一旦 ScrollView 充满了内容,scrollTo函数就会变得非常缓慢和缓慢。此时设置动画持续时间withAnimation无效。任何想法为什么动画开始变慢?提前致谢。

struct ContentView: View {
    @State private var items: [Date] = []
    
    static var dateFormatter: DateFormatter = {
        let formatter = DateFormatter()
        formatter.dateFormat = "hh:mm:ss:SSS"
        return formatter
    }()
    
    var body: some View {
        VStack {
            ScrollView {
                ScrollViewReader { scrollProxy in
                    LazyVStack {
                        ForEach(items, id: \.self) { item in
                            Text(Self.dateFormatter.string(from: item))
                                .font(.system(size: 16.0))
                                .padding()
                                .background(
                                    RoundedRectangle(cornerRadius: 8.0)
                                        .fill(Color.blue)
                                )
                                .id(item)
                        }
                    }
                    .onReceive(items.publisher) { date in
                        withAnimation(.easeInOut(duration: 0.25)) {
                            scrollProxy.scrollTo(date, anchor: .bottom)
                        }
                    }
                }
            }
            
            Button("Add Item", action: { items.append(Date()) })
        }
    }
}
4

0 回答 0