LiTranslate-iOS/LiTranslate/Presentation/Component/Modifiers/ScrollContentBackgroundModifier.swift
Viktor 5ac00486dc
release v1.1 (#1)
Now speech synthesizer works in silent mode.
Fixing iOS 16 compatibility:
- Speech syntesizer
- Colors
2022-10-24 20:52:38 +03:00

23 lines
491 B
Swift

//
// ScrollContentBackgroundModifier.swift
// LiTranslate
//
// Created by Marian König.
// Found on:
// https://stackoverflow.com/questions/72649907/ios-16-swiftui-list-background.
//
import SwiftUI
struct ScrollContentBackgroundModifier: ViewModifier {
@ViewBuilder
func body(content: Content) -> some View {
if #available(iOS 16.0, *) {
content
.scrollContentBackground(.hidden)
} else {
content
}
}
}