Mercurial > public > geoquiz
annotate GeoQuiz/GuessTheCurrencyView.swift @ 7:d945e52b0704
implement dynamic map
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Tue, 04 Oct 2022 18:54:24 +0200 |
parents | GeoQuiz/GuessTheCurrency.swift@1946bbfde4af |
children |
rev | line source |
---|---|
6 | 1 // |
7 | 2 // GuessTheCurrencyView.swift |
6 | 3 // GeoQuiz |
4 // | |
5 // Created by Dennis Concepción Martín on 29/9/22. | |
6 // | |
7 | |
8 import SwiftUI | |
9 | |
7 | 10 struct GuessTheCurrencyView: View { |
6 | 11 var body: some View { |
12 Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) | |
13 } | |
14 } | |
15 | |
16 struct GuessTheCurrency_Previews: PreviewProvider { | |
17 static var previews: some View { | |
7 | 18 GuessTheCurrencyView() |
6 | 19 } |
20 } |