UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

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      

TAKE YOUR SKILLS TO THE NEXT LEVEL If you like Hacking with Swift, you'll love Hacking with Swift+ – it's my premium service where you can learn advanced Swift and SwiftUI, functional programming, algorithms, and more. Plus it comes with stacks of benefits, including monthly live streams, downloadable projects, a 20% discount on all books, and free gifts!

Find out more

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.