23 lines
336 B
Swift
23 lines
336 B
Swift
//
|
|
// Meta.Binding.swift
|
|
// MacBackend
|
|
//
|
|
// Created by david-swift on 29.11.2024.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
extension Meta.Binding {
|
|
|
|
/// The SwiftUI binding.
|
|
public var swiftUI: SwiftUI.Binding<Value> {
|
|
.init {
|
|
wrappedValue
|
|
} set: { newValue in
|
|
wrappedValue = newValue
|
|
}
|
|
|
|
}
|
|
|
|
}
|