Y
Hacker News
new
|
ask
|
show
|
jobs
by
xiaolingxiao
1292 days ago
hey i also build mobile apps in swiftui. do you have more resources on why $binding could be slow?
1 comments
alin23
1292 days ago
Well, it's not @Binding that's slow, it's the fact that it's not immutable like @State, so on each `body` call, the binding's `get()` function has to be called again.
link