mirror of
https://github.com/whoeevee/EeveeSpotifyReborn.git
synced 2026-01-09 00:23:20 +01:00
14 lines
272 B
Swift
14 lines
272 B
Swift
import SwiftUI
|
|
|
|
struct ListRowSeparatorHidden: ViewModifier {
|
|
func body(content: Content) -> some View {
|
|
if #available(iOS 15.0, *) {
|
|
content
|
|
.listRowSeparator(.hidden)
|
|
}
|
|
else {
|
|
content
|
|
}
|
|
}
|
|
}
|