ちなみにうちは今こう言う感じのModal遷移ボタン作ってますw public struct FullScreenCoverPresentationLink<Label: View>: View { @State private var isPresented: Bool = false @State private var path: [Route] = [] @State private var toastHandler: ToastHandler = ToastHandler() @Environment(\.routingProvider) var routingProvider: RoutingProvider let route: Route let label: () -> Label public init(route: Route, label: @escaping () -> Label) { self.route = route self.label = label } public var body: some View { Button { isPresented = true } label: { label() } .fullScreenCover(isPresented: $isPresented, content: { NavigationStack(path: $path) { routingProvider.makeView(for: route) .displayToast(on: .bottom, handledBy: toastHandler, toastMaker: ToastView.init(toastHandler:)) .navigationDestination(for: Route.self, destination: { routingProvider.makeView(for: $0) }) .toolbar { ToolbarItem(placement: .topBarTrailing) { DismissButton() } } } }) } }
2