- 一般的な画面遷移の方法である、NavigationLinkを使う。
//
// ContentView.swift
// Test
//
// Created by yuki on 2023/09/17.
//
import SwiftUI
struct ContentView: View {
@State private var name = ""
var body: some View {
NavigationView {
NavigationLink {
secondView()
} label: {
Text("初期ページです")
}
}
}
}
struct secondView: View {
var body: some View {
NavigationView {
ZStack{
Color.black
.ignoresSafeArea()
Text("次ページです")
.foregroundColor(.white)
}
}
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}