mirror of
https://github.com/yattee/yattee.git
synced 2024-11-15 02:28:23 +00:00
30 lines
648 B
Swift
30 lines
648 B
Swift
|
import SwiftUI
|
||
|
|
||
|
struct VideosCellsView: View {
|
||
|
@EnvironmentObject private var state: AppState
|
||
|
|
||
|
@State private var columns: Int
|
||
|
|
||
|
init(videos: [Video], columns: Int = 3) {
|
||
|
self.videos = videos
|
||
|
self.columns = columns
|
||
|
}
|
||
|
|
||
|
var videos = [Video]()
|
||
|
|
||
|
var body: some View {
|
||
|
ScrollView(.vertical) {
|
||
|
LazyVGrid(columns: items, spacing: 10) {
|
||
|
ForEach(videos) { video in
|
||
|
VideoCellView(video: video)
|
||
|
}
|
||
|
}
|
||
|
.padding()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var items: [GridItem] {
|
||
|
Array(repeating: .init(.fixed(600)), count: columns)
|
||
|
}
|
||
|
}
|