Mercurial > public > geoquiz
view 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 |
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() } }