Created
October 24, 2024 01:22
-
-
Save takoikatakotako/cf53d2745819ab25a7b5358b15bc1d32 to your computer and use it in GitHub Desktop.
SwiftUIでNavigationBarを非表示にする
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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