We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
8ff6c45
var contractView: ContractView<UIView, Int> = ContractView { contractView in Contract(initialValue: 0) .onChange { (value) in print("New Value: \(String(describing: value))") Later.main { // Update UI } } }