mirror of
https://github.com/whoeevee/EeveeSpotifyReborn.git
synced 2026-01-09 00:23:20 +01:00
13 lines
287 B
Swift
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())
|
|
}
|
|
}
|
|
}
|