Skip to content

Instantly share code, notes, and snippets.

@takoikatakotako
Created March 11, 2024 23:09
Show Gist options
  • Select an option

  • Save takoikatakotako/42f3882acd1823e0699fb94231497325 to your computer and use it in GitHub Desktop.

Select an option

Save takoikatakotako/42f3882acd1823e0699fb94231497325 to your computer and use it in GitHub Desktop.
SwiftUIでListを使ってセクションごとに表示する
import SwiftUI
struct ContentView: View {
var body: some View {
List {
Section("Normal") {
Text("Meowth")
Text("Ditto")
}
Section("Fire") {
Text("Vulpix")
Text("Arcanine")
Text("Charmander")
}
}
.listStyle(.grouped)
}
}
#Preview {
ContentView()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment