Mercurial > public > geoquiz
annotate GeoQuiz/Components/LatestGamesPlaceholder.swift @ 21:b145c408f791
refactor code
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Tue, 25 Oct 2022 15:30:01 +0200 |
parents | e281791e0494 |
children |
rev | line source |
---|---|
20 | 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 } |