Last active
July 2, 2020 21:12
-
-
Save apatronl/e498368877a5ee831c7fdd4287fa25f1 to your computer and use it in GitHub Desktop.
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 { | |
NavigationView { | |
List { | |
ForEach(0..<25, id: \.self, content: { i in | |
NavigationLink("(\(i)) Hello, world!", destination: EmptyView()) | |
}) | |
} | |
.navigationBarTitle("Bar Title") | |
} | |
.navigationBarColor(backgroundColor: .systemTeal, tintColor: .white) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment