記事一覧 言語まとめ iosプライバシーポリシー

Stack

■Stack

 

・HStack

 横方向に並べて表示

・VStack

 縦方向に並べて表示

・ZStack

 重ねて表示

 

■コード

        ZStack{
            VStack{
                Text("VStack縦並び***************")
                
                HStack{
                    Text("HStack")
                    Spacer()
                    Text("横並び")
                }
                .background(Color.yellow)
            }
            .background(Color.blue)
            
            HStack{
                Text("HStack重ねて配置")
            }.background(Color.green)
            
        }

 ■プレビュー

f:id:AJ_okamoto:20200211015957p:plain



 

個人制作アプリリリース中「TimePost」
Download on the App Store
個人制作アプリリリース中「UrlReader」
Download on the App Store