conversations-classic-ios/ConversationsClassic/View/SharedComponents/SharedListRow.swift
2024-06-27 11:54:12 +02:00

18 lines
418 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.Main.backgroundLight)
}
}