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
We want to generate behavior into them. This will also eliminate the annoying override var modifier: Modifier = Modifier boilerplate that every implementation has to do.
The text was updated successfully, but these errors were encountered:
This doesn't actually solve our problems. Swift lacks abstract classes.
We may have to generate two types instead. A Widget and a Binding. You implement the Binding which is a pure delegate (maybe as a stateless thing), and then Widget wraps an instance + state (like modifier, tree walking) + stateless binding.
We want to generate behavior into them. This will also eliminate the annoying
override var modifier: Modifier = Modifier
boilerplate that every implementation has to do.The text was updated successfully, but these errors were encountered: