Files
EeveeSpotifyReborn/Sources/EeveeSpotify/Settings/Shared/Views/NonIPadSpacerView.swift
T

13 lines
287 B
Swift

import SwiftUI
struct NonIPadSpacerView: View {
var body: some View {
if !UIDevice.current.isIpad {
Spacer()
.frame(height: 40)
.listRowBackground(Color.clear)
.modifier(ListRowSeparatorHidden())
}
}
}