web-dev-qa-db-ja.com

リストのセパレーターを削除/調整する方法は?

SwiftUIのListビューでセパレーターを削除したり、セパレーターインセットを調整したりする方法はありますか?

UIKitではそれは

tableView.separatorStyle = .none

そして

tableview.separatorInset = UIEdgeInsets(top: 0, left: 18, bottom: 0, right: 18)

対応するSwiftUIの選択肢は何ですか?

7
Artem Abramov

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")
    }

 }
0
Krunal Patel