Post

Replies

Boosts

Views

Activity

Reply to Xcode 12.0 B2 SwiftUI - Bottom toolbar after List in ContentView no longer displays.
Apparently, it needs to be like this now, with each being embedded in a separate ToolbarItem including Spacer() - (found this while searching UIToolbar in SwiftUI): .toolbar {                 ToolbarItem(placement: .bottomBar) {                                         Button(action: {}, label: {                         Text("One")                     })                 }                 ToolbarItem(placement: .bottomBar) {                     Spacer()                 }                 ToolbarItem(placement: .bottomBar) {                                             Button(action: {}, label: {                         Text("Two")                     })                 }                 ToolbarItem(placement: .bottomBar) {                     Spacer()                 }                 ToolbarItem(placement: .bottomBar) {                                             Button(action: {}, label: {                         Text("Three")                     })                                   }             }
Jul ’20