SwiftUIのList
ビューでセパレーターを削除したり、セパレーターインセットを調整したりする方法はありますか?
UIKitではそれは
tableView.separatorStyle = .none
そして
tableview.separatorInset = UIEdgeInsets(top: 0, left: 18, bottom: 0, right: 18)
対応するSwiftUIの選択肢は何ですか?
SwiftUIで:
セパレーターを削除
init() {
UITableView.appearance().separatorStyle = .none //remove separators
}
var body: some View {
List {
Text("Index 1")
Text("Index 2")
Text("Index 3")
Text("Index 4")
}
}