Minimum changes for Xcode 11 beta 5

This commit is contained in:
John Holdsworth
2019-07-31 14:11:25 +01:00
parent 7af0a711da
commit a36ff1b7ca
48 changed files with 209 additions and 114 deletions

View File

@@ -15,9 +15,9 @@ struct TabbarView : View {
var body: some View {
TabbedView(selection: $selectedIndex) {
UsersListView()
.tabItemLabel(Text("Users"))
.tabItem({ Text("Users") })
MapView()
.tabItemLabel(Text("Map"))
.tabItem({ Text("Map") })
}
}
}