Mercurial > public > geoquiz
annotate GeoQuiz/Helpers/ActivityAlert.swift @ 30:eb23effeede7
add DatasetView
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Thu, 10 Nov 2022 11:51:52 +0100 |
parents | 425078c01194 |
children |
rev | line source |
---|---|
13 | 1 // |
20 | 2 // ActivityAlert.swift |
13 | 3 // GeoQuiz |
4 // | |
5 // Created by Dennis Concepción Martín on 12/10/22. | |
6 // | |
7 | |
8 import SwiftUI | |
9 | |
10 struct ActivityAlert: View { | |
11 var body: some View { | |
12 VStack(spacing: 10) { | |
13 ProgressView() | |
14 Text("Loading") | |
15 } | |
16 .padding() | |
17 .background(.regularMaterial) | |
18 .cornerRadius(10) | |
19 } | |
20 } | |
21 | |
22 struct ActivityAlert_Previews: PreviewProvider { | |
23 static var previews: some View { | |
24 ActivityAlert() | |
25 } | |
26 } |