我正在使用来自appstore的正式发布的Xcode 11。 如果您运行下面的代码,可以看到很多事情。
Root Press
可以正确添加缺少的视图#2,但是没有动画。为什么没有动画?Press
按钮,可以正确添加中间视图,但是如果您看一下,您会看到scrollView内容大小没有更新,因此内容被裁剪了。更新ScrollView的正确方法是什么? import SwiftUI
struct ContentView: View {
@State var isPressed = false
var body: some View {
VStack {
Button("Root Press") { withAnimation { self.isPressed.toggle() } }
ScrollView {
Group {
SampleView(index: 1)
if isPressed { SampleView(index: 2) }
SampleView(index: 3)
SampleView(index: 4)
}
.border(Color.red)
}
}
}
}
struct SampleView: View {
@State var index: Int
@State var isPressed = false
var body: some View {
HStack {
VStack {
Text("********************")
Text("This View = \(index)")
Text("********************")
if isPressed {
Text("********************")
Text("-----> = \(index)")
Text("********************")
}
}
Button("Press") { withAnimation { self.isPressed.toggle() } }
}
}
}