2024-01-04 18:11:07 +01:00
|
|
|
//Made by Lumaa
|
|
|
|
|
|
|
|
import SwiftUI
|
|
|
|
|
2024-01-04 22:19:35 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|