Reactant
Reactant copied to clipboard
Reactant is a reactive architecture for iOS
Styles either shouldn't be static, or they should receive `Configuration` as input to allow easy styling. We should also look at https://github.com/inloop/Styles to see if it might be integrated.
This a subject to further discussion.
`Component.swift` file, using `unowned` can result in a crash in case `self` is deinitialized (e.g. in a `Observable` subscription when not disposing it on its `deinit`).
At `ComponentDelegate.swift`:84 we have this: ```swift public weak var ownerComponent: COMPONENT? { didSet { needsUpdate = stateStorage != nil } } ``` If I understand the implementation correctly, we want...