VesselWheel

count : index with VStack 본문

Xcode Study

count : index with VStack

JasonYang 2023. 10. 18. 17:18

 

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