mirror of
				https://github.com/yattee/yattee.git
				synced 2025-10-30 20:22:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			472 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			472 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
| import SwiftUI
 | |
| 
 | |
| struct SearchView: View {
 | |
|     @ObservedObject private var provider = SearchedVideosProvider()
 | |
|     @EnvironmentObject private var state: AppState
 | |
| 
 | |
|     @Binding var tabSelection: TabSelection
 | |
| 
 | |
|     @State private var query = ""
 | |
| 
 | |
|     var body: some View {
 | |
|         VideosView(tabSelection: $tabSelection, videos: videos)
 | |
|             .searchable(text: $query)
 | |
|     }
 | |
| 
 | |
|     var videos: [Video] {
 | |
|         provider.load(query)
 | |
| 
 | |
|         return provider.videos
 | |
|     }
 | |
| }
 | 
