Learning Time : 30min

My Github : Flashzilla Source Code

My Note index link

day88.png

KeyWords

Designing a single card view

Step 1: Define the Card Model

struct Card {
    let prompt: String
    let answer: String

    static let example = Card(prompt: "What is the capital city of Scotland?", answer: "Edinburgh")
}

Step 2: Building the Card View