A property that can read and write a value owned by a source of truth. Also connects the data with views.

If we have a @State data we can use the @Binding to copy the data .

Such as

@State private var hello = false 
@Binding var hello: Bool 

init(isActivated : Binding<Bool> = .constant(false)){
_isActivated = isActivated 
}

Screen Shot 2022-04-03 at 8.02.28 PM.png