Blur Views | SwiftUI Tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 พ.ย. 2024

ความคิดเห็น • 2

  • @colgates.
    @colgates. 7 หลายเดือนก่อน

    I don't mean to offend, but why to overcomplicate?
    2 lines of code do the same:
    .blur(radius: isBlur ? 10.0 : 0.0)
    .animation(.easeInOut, value: isBlur)

    • @AppDevelopmentAcademy
      @AppDevelopmentAcademy  7 หลายเดือนก่อน

      Hello @colgates.
      You're not offending anybody. We are fellow developers learning from each other. Thanks for giving the feedback.
      Coming to the code. Both are doing different things.
      One is bluring another one is animating the blur to create smooth transition.