Skip to content

Instantly share code, notes, and snippets.

@apatronl
Last active July 2, 2020 21:12
Show Gist options
  • Save apatronl/e498368877a5ee831c7fdd4287fa25f1 to your computer and use it in GitHub Desktop.
Save apatronl/e498368877a5ee831c7fdd4287fa25f1 to your computer and use it in GitHub Desktop.
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