我有一个水平ScrollView
,其中容纳一些Rectangle
。我想要实现的是淡出每个Rectangle
,然后隐藏(删除)ScrollView
。
我已经部分实现了这一目标:
我之所以这样说,部分原因是,如您所见,Rectangle
被删除了,但是ScrollView仍然存在(请参阅属于ScrollView的蓝色边框框,我添加了一些填充或使其更加可见)
我认为我可能需要嵌套过渡(每个Rectangle
都有一个.move(edge:)
过渡,ScrollView
应该有另一个“外部”过渡-但这也可以是错误的方法。
有什么想法如何实现此动画,以及在动画结束时转换(删除)ScrollView
?我尝试了其他选择,但失败了。注意:黑色的Rectangle
是固定的。
这是示例代码:
struct TestAnimation: View {
@State var show : Bool = true
var colors : [Color] = [.red, .orange, .yellow, .green, .blue]
var body: some View {
VStack(alignment: .leading) {
Spacer()
Color.purple
.frame(height: 100)
.overlay(
Text("Tap Me!").foregroundColor(.white))
.onTapGesture {
self.show.toggle()
}
HStack(alignment: .bottom) {
Rectangle()
.fill(Color.black)
.frame(width: 70, height: 100)
.overlay(Text("A").foregroundColor(.white).font(.largeTitle))
.padding(8)
ScrollView(.horizontal, showsIndicators: false) {
HStack(alignment: .bottom) {
if show {
self.cellForItemAt(idx: 2)
self.cellForItemAt(idx: 3)
self.cellForItemAt(idx: 4)
self.cellForItemAt(idx: 5)
}
}
.frame(height: 100)
.padding(4)
.border(Color.red)//HStack
}//Scrollview
.padding(4)
.border(Color.blue)
}
.padding(4)
.border(Color.gray)//Hstack
}
}
func cellForItemAt(idx: Int) -> some View {
return Rectangle()
.fill(colors[idx-1])
.frame(width: 70, height: 100)
.transition(AnyTransition.move(edge: .bottom).combined(with: .opacity).animation(self.ripple(idx: idx)))
.animation(ripple(idx: idx))
}
func ripple(idx: Int) -> Animation {
Animation
.easeInOut(duration: 0.8)
.delay(0.20 * Double(colors.count - idx) : Double(idx))
}
}