Skip to content

Instantly share code, notes, and snippets.

@kamimi01
Last active February 19, 2022 08:50
Show Gist options
  • Save kamimi01/a7fdfc5a524af37e8f9855cd90153e7e to your computer and use it in GitHub Desktop.
Save kamimi01/a7fdfc5a524af37e8f9855cd90153e7e to your computer and use it in GitHub Desktop.
NavigationView {
Button(action: {
// do something
}) {
HStack {
Image("icon")
.resizable()
.scaledToFit()
Text("xxxxxxxxxxxxxxxx")
.foregroundColor(.baseBackground)
}
}
.navigationBarTitle("一覧", displayMode: .inline)
.background(NavigationConfigurator { nc in
nc.navigationBar.barTintColor = UIColor(red: 0 / 255, green: 123 / 255, blue: 251 / 255))
nc.navigationBar.titleTextAttributes = [.foregroundColor : UIColor.white]
})
}
@kamimi01
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment