view GeoQuiz/Components/LatestGamesPlaceholder.swift @ 22:56add5561261

add mock data creation
author Dennis C. M. <dennis@denniscm.com>
date Wed, 26 Oct 2022 08:20:19 +0200
parents e281791e0494
children
line wrap: on
line source

//
//  LatestGamesPlaceholder.swift
//  GeoQuiz
//
//  Created by Dennis Concepción Martín on 23/10/22.
//

import SwiftUI

struct LatestGamesPlaceholder: View {
    var body: some View {
        VStack(spacing: 20) {
            Image(systemName: "gamecontroller.fill")
            Text("No recently played games")
        }
        .foregroundColor(.secondary)
    }
}

struct LatestGamesPlaceholder_Previews: PreviewProvider {
    static var previews: some View {
        LatestGamesPlaceholder()
    }
}