Mercurial > public > geoquiz
view GeoQuiz/Components/ActivityAlertHelper.swift @ 17:8dac58bb4569
fix build bug
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Thu, 20 Oct 2022 18:07:51 +0200 |
parents | bdfff35dd43c |
children |
line wrap: on
line source
// // ActivityAlertHelper.swift // GeoQuiz // // Created by Dennis Concepción Martín on 12/10/22. // import SwiftUI struct ActivityAlert: View { var body: some View { VStack(spacing: 10) { ProgressView() Text("Loading") } .padding() .background(.regularMaterial) .cornerRadius(10) } } struct ActivityAlert_Previews: PreviewProvider { static var previews: some View { ActivityAlert() } }