diff --git a/DHBW-Service.xcodeproj/xcuserdata/patrick.xcuserdatad/xcschemes/xcschememanagement.plist b/DHBW-Service.xcodeproj/xcuserdata/patrick.xcuserdatad/xcschemes/xcschememanagement.plist index e49622e..05bc65a 100644 --- a/DHBW-Service.xcodeproj/xcuserdata/patrick.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/DHBW-Service.xcodeproj/xcuserdata/patrick.xcuserdatad/xcschemes/xcschememanagement.plist @@ -10,5 +10,23 @@ 0 + SuppressBuildableAutocreation + + CD9FAB7C258EC60200D6D0C5 + + primary + + + CD9FAB92258EC60600D6D0C5 + + primary + + + CD9FAB9D258EC60600D6D0C5 + + primary + + + diff --git a/DHBW-Service/ContentView.swift b/DHBW-Service/ContentView.swift index 3760fd3..0bf7972 100644 --- a/DHBW-Service/ContentView.swift +++ b/DHBW-Service/ContentView.swift @@ -25,11 +25,15 @@ struct ContentView: View { } .toolbar { #if os(iOS) - EditButton() + ToolbarItem(placement: .bottomBar) { + EditButton() + } #endif - - Button(action: addItem) { - Label("Add Item", systemImage: "plus") + + ToolbarItem(placement: .bottomBar) { + Button(action: addItem) { + Label("Add Item", systemImage: "plus") + } } } }