yattee/Shared/Favorites/DropFavoriteOutside.swift
2021-11-01 22:56:18 +01:00

12 lines
217 B
Swift

import Foundation
import SwiftUI
struct DropFavoriteOutside: DropDelegate {
@Binding var current: FavoriteItem?
func performDrop(info _: DropInfo) -> Bool {
current = nil
return true
}
}