add navigation bar button swiftui
.navigationBarItems(
leading: Button(action: {
// Actions
}, label: { Text("Button") }),
trailing: Button(action: {
// Actions
}, label: { Image("Icon") })
)
add navigation bar button swiftui
.navigationBarItems(
leading: Button(action: {
// Actions
}, label: { Text("Button") }),
trailing: Button(action: {
// Actions
}, label: { Image("Icon") })
)
swift add navigation bar
let navBar = UINavigationBar(frame: CGRect(x: 0, y: 0, width: view.frame.size.width, height: 44))
view.addSubview(navBar)
let navItem = UINavigationItem(title: "SomeTitle")
let doneItem = UIBarButtonItem(barButtonSystemItem: .done, target: nil, action: #selector(selectorName:))
navItem.rightBarButtonItem = doneItem
navBar.setItems([navItem], animated: false)
navigation bar title ios 13 siwftui
import SwiftUI
// 1.
struct People: Identifiable{
var id = UUID()
var name = String()
}
struct ContentView: View {
// 2.
let people: [People] = [
People(name: "Bill"),
People(name: "Jacob"),
People(name: "Olivia")]
var body: some View {
NavigationView {
// 3.
List(people) { listedPeople in
NavigationLink(destination: DetailView(name: listedPeople.name)) {
VStack(alignment: .leading){
Text(listedPeople.name)
}
}
}
// 4.
.navigationBarItems(leading:
HStack {
Button(action: {}) {
Image(systemName: "minus.square.fill")
.font(.largeTitle)
}.foregroundColor(.pink)
}, trailing:
HStack {
Button(action: {}) {
Image(systemName: "plus.square.fill")
.font(.largeTitle)
}.foregroundColor(.blue)
})
// 5.
.navigationBarTitle(Text("Names"))
}
}
}
// 6.
struct DetailView: View {
var name: String
var body: some View {
Text("current name is: \(name) ")
// 7.
.navigationBarTitle(Text("Current Name"), displayMode: .inline)
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us