일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- MKMapItem
- Protocol
- 러닝기록앱
- AnyObject
- Startign Assignments
- CLLocationManagerDelegate
- 한국어 개인정보처리방침
- CoreLocation
- Timer
- xcode로 날씨앱 만들기
- Required Reason API
- 클로저의 캡슐화
- weak var
- WeatherManager
- addannotation
- 러닝타이머
- SwiftUI Boolean 값
- dispatchsource
- UIAlertAction
- App Store Connect
- UICollectionViewFlowLayout
- 서체관리자
- Xcode
- 단일 책임원칙
- swift
- RunningTimer
- 영문 개인정보처리방침
- font book
- MKMapViewDelegate
- weatherKit
- Today
- Total
VesselWheel
count : index with VStack 본문
import SwiftUI
struct ContentView: View {
var body: some View {
Form{
VStack {
ScrollView(){
VStack{
ForEach(1 ..< 31
){ index in
Text("Count : \(index)")
.font(.largeTitle)
}
}
// .infinity : VStack 이 가지는 최대한 너비
// ㄴ 화면 너비
.frame(maxWidth: .infinity)
}
.frame(height: 200)
.background(.orange)
Divider()
ScrollView(.horizontal, showsIndicators: false){
HStack{
ForEach(1 ..< 31
){ index in
Text("Count : \(index)")
.font(.largeTitle)
}
}
}
.frame(height: 200)
.background(.pink)
}
}
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
'Xcode Study' 카테고리의 다른 글
cocoa pods 사용법과 터미널 내용 (1) | 2023.10.18 |
---|---|
NavigationView with section in Form{} (0) | 2023.10.18 |
NavigationView (0) | 2023.10.18 |
단추 늘이기, 줄이기 (0) | 2023.10.18 |
func Count and Age present (0) | 2023.10.18 |