We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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 } } }