Mercurial > public > geoquiz
annotate GeoQuiz/ProfileModalView.swift @ 8:e09959b4e4a8
fix bugs
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Thu, 06 Oct 2022 11:14:34 +0200 |
parents | 1946bbfde4af |
children | 136928bae534 |
rev | line source |
---|---|
6 | 1 // |
2 // ProfileModalView.swift | |
3 // GeoQuiz | |
4 // | |
5 // Created by Dennis Concepción Martín on 25/9/22. | |
6 // | |
7 | |
8 import SwiftUI | |
9 | |
10 struct ProfileModalView: View { | |
11 var body: some View { | |
8 | 12 Text("Hello, World!") |
6 | 13 } |
14 } | |
15 | |
16 struct ProfileView_Previews: PreviewProvider { | |
17 static var previews: some View { | |
18 ProfileModalView() | |
19 } | |
20 } |