Mercurial > public > geoquiz
view GeoQuiz/ProfileModalView.swift @ 10:a793f33f05fb
refactor code and fix layout
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Sat, 08 Oct 2022 21:36:40 +0200 |
parents | e09959b4e4a8 |
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() } }