我想添加动画,以便当我单击按钮时,我的 TextEditor(在 iOS 14 中)中的文本会慢慢淡出(假设持续时间为 1.5)。
这是我正在使用的代码,但无法让文本淡出。关于我做错了什么的任何想法?
struct FadeTextFromTextEditor: View {
@State private var isAnimationOn = true
@State private var text: String = ""
@State private var resetText = true
var body: some View {
VStack(alignment: .center) {
if #available(iOS 14.0, *)
{
TextEditor(text: $text)
.border(Color.black, width: 1)
.padding(.horizontal, 5)
.padding(.vertical, 5)
.animation(.easeOut(duration: 1.5), value: resetText)
}
Button(action : {
// If bool for fading the text out is set to true, use animation on the text
if (self.isAnimationOn) {
withAnimation(.easeOut(duration: 1.5))
{
self.resetText.toggle()
}
}
})
{
Text("Animate")
.font(.headline)
.frame(width:125, height: 30)
.padding()
}
}
}
}
此外,我确实尝试在按钮的操作中取出withAnimation
函数调用,如此处所示,但这并没有解决它。
if (!self.isAnimationOn) {
self.showMessageText.toggle()
}