comparison LazyBear/Views/Home/HomeView.swift @ 443:ffbb1dbab531

InsiderRosterHelper implemented
author Dennis Concepción Martín <dennisconcepcionmartin@gmail.com>
date Mon, 21 Jun 2021 20:17:46 +0200
parents 417148200aaf
children 4255f94d0767
comparison
equal deleted inserted replaced
442:6eae10397501 443:ffbb1dbab531
59 .background(Color("customBackground").edgesIgnoringSafeArea(.all)) 59 .background(Color("customBackground").edgesIgnoringSafeArea(.all))
60 } 60 }
61 .navigationViewStyle(StackNavigationViewStyle()) 61 .navigationViewStyle(StackNavigationViewStyle())
62 .sheet(isPresented: $showTradingDates) { 62 .sheet(isPresented: $showTradingDates) {
63 if let dates = home.data.tradingDates { 63 if let dates = home.data.tradingDates {
64 TradingDates(dates: dates) 64 TradingDatesSheet(dates: dates)
65 } 65 }
66 } 66 }
67 } else { 67 } else {
68 ProgressView() 68 ProgressView()
69 .onAppear { 69 .onAppear {