Site icon Ravi Shankar

Building a Transaction List App in SwiftUI

In this tutorial, we’ll walk through creating a transaction list app, explaining key SwiftUI concepts along the way.

Step 1: Setting Up the Data Model

Let’s start by defining our data model. We’ll create a Transaction struct and an enum for the transaction type.

import SwiftUI

struct Transaction: Identifiable {
    let id: UUID
    let date: Date
    let amount: Double
    let description: String
    let type: TransactionType
}

enum TransactionType {
    case credit
    case debit
}

Key points:

Step 2: Creating the Main View

Now, let’s create our main view, TransactionListView:

struct TransactionListView: View {
    @State private var transactions: [Transaction] = []

    var body: some View {
        NavigationView {
            VStack {
                List(transactions) { transaction in
                    NavigationLink(destination: TransactionDetailView(transaction: transaction)) {
                        TransactionRowView(transaction: transaction)
                    }
                }
                .navigationTitle("Transactions")
            }
            .onAppear {
                loadTransactions()
            }
            .refreshable {
                loadTransactions()
            }
        }
    }

    private func loadTransactions() {
        // Simulated API call
        DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
            // Populate transactions array
        }
    }
}

Key components:

  1. @State: This property wrapper is used for the transactions array. It tells SwiftUI to update the view when this value changes.
  2. NavigationView: Provides a navigation container for our list.
  3. List: Efficiently displays our transactions.
  4. NavigationLink: Enables navigation to a detail view for each transaction.
  5. .onAppear: Loads transactions when the view appears.
  6. .refreshable: Adds pull-to-refresh functionality.

Step 3: Creating a Row View

The TransactionRowView represents each row in our list:

struct TransactionRowView: View {
    let transaction: Transaction

    var body: some View {
        HStack {
            VStack(alignment: .leading) {
                Text(transaction.description)
                    .font(.headline)
                Text(transaction.date, style: .date)
                    .font(.subheadline)
                    .foregroundColor(.secondary)
            }
            Spacer()
            Text(String(format: "$%.2f", transaction.amount))
                .foregroundColor(transaction.type == .credit ? .green : .red)
        }
    }
}

Key points:

Step 4: Creating a Detail View

The TransactionDetailView shows more information about a selected transaction:

struct TransactionDetailView: View {
    let transaction: Transaction

    var body: some View {
        VStack(alignment: .leading, spacing: 20) {
            Text(transaction.description)
                .font(.title)
            Text(transaction.date, style: .date)
            Text(String(format: "$%.2f", transaction.amount))
                .font(.title2)
                .foregroundColor(transaction.type == .credit ? .green : .red)
            Text("Type: \(transaction.type == .credit ? "Credit" : "Debit")")
            Spacer()
        }
        .padding()
        .navigationTitle("Transaction Details")
    }
}

Key points:

Step 5: Implementing Data Loading

In a real app, you’d fetch data from an API or database. Here’s a simulated data loading function:

private func loadTransactions() {
    // Simulate API call
    DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
        self.transactions = [
            Transaction(id: UUID(), date: Date().addingTimeInterval(-86400 * 2), amount: 120.50, description: "Grocery Shopping", type: .debit),
            Transaction(id: UUID(), date: Date().addingTimeInterval(-86400), amount: 1500.00, description: "Salary Deposit", type: .credit),
            // Add more transactions...
        ]
    }
}

Key points:

Conclusion

This tutorial covered several key SwiftUI concepts:

  1. Creating and using custom data models
  2. Building list views with NavigationView and List
  3. Implementing navigation with NavigationLink
  4. Creating reusable subviews
  5. Using @State for managing view state
  6. Implementing pull-to-refresh functionality

By understanding these components, you’re well on your way to building more complex SwiftUI applications.

Exit mobile version