TEAM LICENSES: Save money and learn new skills through a Hacking with Swift+ team license >>

SOLVED: Day 38, Challenge 3

Forums > 100 Days of SwiftUI

I tried the splitting of personal and business expenses in iExpense. I'm looking for a good way to present totals for each of these in the List Section footer. Is there an easy way to achieve this (personal expenses section as an example)?

List {
                if personalExpenses.personalItems.isEmpty {
                    Section("Personal Expenses") {
                        Text("No personal expenses")
                    }
                } else {
                    Section() {
                        ForEach(personalExpenses.personalItems) { item in
                            HStack {
                                Image(systemName: "creditcard")
                                    .font(.title2)
                                    .foregroundStyle(.secondary)
                                VStack(alignment: .leading, spacing: 5) {
                                    Text(item.name)
                                        .font(.headline)
                                    Text(item.type)
                                        .font(.footnote)
                                        .foregroundStyle(.secondary)
                                }
                                .frame(maxWidth: .infinity, alignment: .leading)
                                Text("\(item.amount, specifier: "%.2f kr")")
                            }
                        }
                        .onDelete(perform: removePersonalItems)
                    } header: {
                        Text("Personal Expenses")
                    } footer: {
                        Text("Total personal expenses: \(100) PLACEHOLDER")
                    }

2      

Try something like this

var sumPersonalExpenses: Double {
    let amounts = personalExpenses.personalItems.map { $0.amount }
    return amounts.reduce(0, +)
}

3      

Hacking with Swift is sponsored by String Catalog.

SPONSORED Get accurate app localizations in minutes using AI. Choose your languages & receive translations for 40+ markets!

Localize My App

Sponsor Hacking with Swift and reach the world's largest Swift community!

Reply to this topic…

You need to create an account or log in to reply.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.