// // Copyright Amazon.com Inc. or its affiliates. // All Rights Reserved. // // SPDX-License-Identifier: MIT-0 // import SwiftUI extension NavigationLink where Label == EmptyView { init(destination: Destination, when selection: Binding, equals tag: T) { self.init(destination: destination, tag: tag, selection: selection, label: EmptyView.init) } }