Mercurial > public > geoquiz
view 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 |
line wrap: on
line source
// // ProfileModalView.swift // GeoQuiz // // Created by Dennis Concepción Martín on 25/9/22. // import SwiftUI struct ProfileModalView: View { var body: some View { Text("Hello, World!") } } struct ProfileView_Previews: PreviewProvider { static var previews: some View { ProfileModalView() } }