conversations-classic-ios/ConversationsClassic/View/SharedComponents/SharedListRow.swift
2024-07-04 10:21:12 +02:00

18 lines
423 B
Swift

import SwiftUI
extension View {
func sharedListRow() -> some View {
modifier(SharedListRow())
}
}
struct SharedListRow: ViewModifier {
public func body(content: Content) -> some View {
content
.listRowInsets(.zero)
.listRowSeparator(.hidden)
.frame(maxWidth: .infinity, maxHeight: .infinity)
.background(Color.Material.Background.light)
}
}