我有一个水平ScrollView
的,可以容纳一些Rectangle
s。我想要实现的是淡出每个Rectangle
然后隐藏(删除)ScrollView
.
我已经部分实现了这一点:
我说的部分原因是,如您所见,Rectangle
s 已被删除,但 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))
}
}