comparison GeoQuiz/Components/LatestGamesPlaceholder.swift @ 20:e281791e0494

finish implementation
author Dennis C. M. <dennis@denniscm.com>
date Sun, 23 Oct 2022 11:48:39 +0100
parents
children
comparison
equal deleted inserted replaced
19:f140bb277c96 20:e281791e0494
1 //
2 // LatestGamesPlaceholder.swift
3 // GeoQuiz
4 //
5 // Created by Dennis Concepción Martín on 23/10/22.
6 //
7
8 import SwiftUI
9
10 struct LatestGamesPlaceholder: View {
11 var body: some View {
12 VStack(spacing: 20) {
13 Image(systemName: "gamecontroller.fill")
14 Text("No recently played games")
15 }
16 .foregroundColor(.secondary)
17 }
18 }
19
20 struct LatestGamesPlaceholder_Previews: PreviewProvider {
21 static var previews: some View {
22 LatestGamesPlaceholder()
23 }
24 }