Mercurial > public > geoquiz
view GeoQuiz/GuessThePopulationView.swift @ 7:d945e52b0704
implement dynamic map
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Tue, 04 Oct 2022 18:54:24 +0200 |
parents | GeoQuiz/GuessThePopulation.swift@1946bbfde4af |
children | e09959b4e4a8 |
line wrap: on
line source
// // GuessThePopulationView.swift // GeoQuiz // // Created by Dennis Concepción Martín on 29/9/22. // import SwiftUI struct GuessThePopulationView: View { var body: some View { Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) } } struct GuessThePopulation_Previews: PreviewProvider { static var previews: some View { GuessThePopulationView() } }