1

我想添加动画,以便当我单击按钮时,我的 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()
        }
4

1 回答 1

0

不确定我是否正确理解了您的期望,但是您可以通过应用.opacity修饰符来淡出,如下所示

TextEditor(text: $text).opacity(resetText ? 1 : 0)    // << here !!
  .border(Color.black, width: 1)
  .padding(.horizontal, 5)
  .padding(.vertical, 5)
  .animation(.easeOut(duration: 1.5), value: resetText)

注意:您不需要两个动画(显式和隐式)-在您的情况下它们的作用相同,因此您可以保留其中任何一个。

于 2020-10-25T06:08:00.450 回答