Swift リストの背景色を透明にするサンプル

環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Ubuntu 20.04.2 LTS

構文
Listの背景色を透明にするには、UITablViewとlistRowBackgroundColorを使います。

作成方法
1.UITablView.appearance().backgroundColorに「.clear」を設定します

UITableView.appearance().backgroundColor = .clear

2.リストの要素にlistRowBackgroundColorを付与します

List {
    ItemView()
        .listRowBackground(Color.clear)
}

使用例

struct ContentView: View {
    init () {
        UITableView.appearance().backgroundColor = .clear
    }
    var body: some View {
        ZStack {
            Rectangle()
                .foregroundColor(.red.opacity(0.3))
            List {
                ForEach (1..<5, id: \.self) { index in
                    Text("\(index)")
                        .listRowBackground(Color.clear)
                }
            }
        }
    }
}

 

Swift

Posted by arkgame