Mercurial > public > geoquiz
view GeoQuiz/Components/ActivityAlertHelper.swift @ 16:1011e56b7832
implement user profile
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Thu, 20 Oct 2022 13:49:42 +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() } }