I am a beginner at Swift and SwiftUI and I have a problem showing the completion data inside of ForEach in SwiftUI.
I know I am getting the data, because I can print it on the console, but I can't show it in view.
Here is my view model:
func getCurrentPrice(selectedCoin: String, completionBlock: @escaping (Double) -> Void) {
specificCoinRepository.getSpecificCoin(selectedCoin: selectedCoin) { result in
switch result {
case .success(let specificCoinModel):
if let selectedCoinCurrentPrice = specificCoinModel.marketData?.currentPrice["usd"] {
completionBlock(selectedCoinCurrentPrice)
}
case .failure(let error):
print(error)
}
}
}
And here is the View:
VStack {
LazyVGrid(columns: gridForm) {
ForEach(favouriteAssetViewModel.favouriteCoins, id: \.self) { asset in
UserAssetCardView(name: asset.name ?? "", symbol: asset.symbol ?? "", priceChangePercentage: 2, currentPrice: self.currentPrice, imgURL: asset.imgURL ?? "", purchaseQuantity: asset.purchaseQuantity ?? 0, animation: animation, addButtonAnimate: addButtonAnimate, isAddedToPorfolio: isAddedToPorfolio, isTouched: $isTouched)
.task {
specificCoinVM.getCurrentPrice(selectedCoin: asset.id ?? "") { price in
self.currentPrice = price //I want to show this data in each UserAssetCardView
print(price)
}
}
}
}
}