Button("Animate") {
   let animation = Animation.interpolatingSpring(mass: 0.15, stiffness: 0.8, damping: 0.5, initialVelocity: 5)
      .speed(5)
      .repeatForever()
   withAnimation(animation) {
      boxScale = 2
   }
}.buttonStyle(.glassProminent)