You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey I am attempting to setup strada following the quickstart guide and referencing the demo but I am facing an error in my WKWebViewConfiguration that is not mentioned in the docs and in the demo the same code seems to work fine
It looks like the BridgeComponent.allTypes method is using async so Im getting an error about the function not supporting concurrency but I don't know how to fix this, and am confused why the demo works with this same code?
Would appreciate any help!
The text was updated successfully, but these errors were encountered:
Hey @joemasilotti thanks for your reply I'm using 17.2 as the target version in xcode
I managed to get strada working now but I had to change my BridgeComponent, besides this catch up now that Strada works Its really awesome!
Seems like the nonisolated part was important
import Strada
extension BridgeComponent {
nonisolated static var allTypes: [BridgeComponent.Type] {
[
FormComponent.self,
]
}
}
Hey I am attempting to setup strada following the quickstart guide and referencing the demo but I am facing an error in my WKWebViewConfiguration that is not mentioned in the docs and in the demo the same code seems to work fine
It looks like the
BridgeComponent.allTypes
method is using async so Im getting an error about the function not supporting concurrency but I don't know how to fix this, and am confused why the demo works with this same code?Would appreciate any help!
The text was updated successfully, but these errors were encountered: