.onAppear() doesn't update Shapes that use @resultBuilder – Ios swift
I was playing around with @resultBuilder and made a simple result builder called SumBuilder which takes a bunch of integers and adds them all up. @resultBuilder struct SumBuilder { static func buildBlock(_ components: Int...) -> Int { components.reduce(0, +) }…