Skip to content

Instantly share code, notes, and snippets.

@prafullakumar
Created August 23, 2020 09:37
Show Gist options
  • Save prafullakumar/c3d71b22d4014628d04f3fcf07c6134d to your computer and use it in GitHub Desktop.
Save prafullakumar/c3d71b22d4014628d04f3fcf07c6134d to your computer and use it in GitHub Desktop.
struct CustomLabelOnNavigationIOS14: View {
var body: some View {
NavigationView {
Text("CustomLabelOnNavigationIOS14")
.navigationBarTitleDisplayMode(.inline)
.toolbar(items: {
ToolbarItem(placement: .principal) {
VStack {
Image(systemName: "person.circle.fill")
Spacer()
Text("CustomLabelOnNavigationIOS14")
}
}
})
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment