comparison LazyBear/Views/Company/CompanyView.swift @ 444:428109b1e3f0

InsiderTransactions implemented
author Dennis Concepción Martín <dennisconcepcionmartin@gmail.com>
date Tue, 22 Jun 2021 16:54:21 +0200
parents ffbb1dbab531
children 9cc0455bc46f
comparison
equal deleted inserted replaced
443:ffbb1dbab531 444:428109b1e3f0
49 49
50 if let insiderRoster = company.data.insiderRoster { 50 if let insiderRoster = company.data.insiderRoster {
51 InsiderRosterHelper(insiderRoster: insiderRoster) 51 InsiderRosterHelper(insiderRoster: insiderRoster)
52 .padding([.horizontal, .bottom]) 52 .padding([.horizontal, .bottom])
53 } 53 }
54
55 if let insiderTransactions = company.data.insiderTransactions {
56 InsiderTransactionsHelper(insiderTransactions: insiderTransactions)
57 .padding([.horizontal, .bottom])
58 }
54 } 59 }
55 } 60 }
56 .background(Color("customBackground").edgesIgnoringSafeArea(.all)) 61 .background(Color("customBackground").edgesIgnoringSafeArea(.all))
57 } else { 62 } else {
58 ProgressView() 63 ProgressView()