Reactant icon indicating copy to clipboard operation
Reactant copied to clipboard

Reactant is a reactive architecture for iOS

Results 15 Reactant issues
Sort by recently updated
recently updated
newest added

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.

`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`).

bug

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...