Skip to content

Instantly share code, notes, and snippets.

@takoikatakotako
Created October 24, 2024 01:49
Show Gist options
  • Save takoikatakotako/56b1d4d399d7965641d701722f4fa995 to your computer and use it in GitHub Desktop.
Save takoikatakotako/56b1d4d399d7965641d701722f4fa995 to your computer and use it in GitHub Desktop.
SwiftUIでListのスタイルを変更する(plain)
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(.plain)
}
}
#Preview {
ContentView()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment