Mercurial > public > geoquiz
view GeoQuiz/Components/LatestGamesPlaceholder.swift @ 24:2e9600b03fe5
add screenshots
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Thu, 27 Oct 2022 09:52:30 +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() } }