Skip to content

Instantly share code, notes, and snippets.

@takoikatakotako
Created October 24, 2024 01:22
Show Gist options
  • Select an option

  • Save takoikatakotako/cf53d2745819ab25a7b5358b15bc1d32 to your computer and use it in GitHub Desktop.

Select an option

Save takoikatakotako/cf53d2745819ab25a7b5358b15bc1d32 to your computer and use it in GitHub Desktop.
SwiftUIでNavigationBarを非表示にする
import SwiftUI
struct ContentView: View {
var body: some View {
NavigationStack {
Text("No Navigation Bar")
.navigationBarTitle("Not Showing Title")
.navigationBarHidden(true)
}
}
}
#Preview {
ContentView()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment