Bubble/Threaded/Components/ListStyle.swift

19 lines
415 B
Swift
Raw Normal View History

2024-01-04 18:11:07 +01:00
//Made by Lumaa
import SwiftUI
extension View {
func listThreaded() -> some View {
self
.scrollContentBackground(.hidden)
.tint(Color.white)
.background(Color.appBackground)
.listStyle(.inset)
}
func listRowThreaded() -> some View {
self
.listRowSeparator(.hidden)
.listRowBackground(Color.appBackground)
2024-01-04 18:11:07 +01:00
}
}