mirror of
				https://github.com/yattee/yattee.git
				synced 2025-10-31 04:31:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			348 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			348 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
| import Foundation
 | |
| import SwiftUI
 | |
| 
 | |
| extension Backport where Content: View {
 | |
|     @ViewBuilder func scrollContentBackground(_ visibility: Bool) -> some View {
 | |
|         if #available(iOS 16.0, macOS 13.0, tvOS 16.0, *) {
 | |
|             content.scrollContentBackground(visibility ? .visible : .hidden)
 | |
|         } else {
 | |
|             content
 | |
|         }
 | |
|     }
 | |
| }
 | 
