forked from lucxjo/leganto-apple
22 lines
361 B
Swift
22 lines
361 B
Swift
|
//
|
||
|
// FeedView.swift
|
||
|
// Leganto
|
||
|
//
|
||
|
// Created by Louis Hollingworth on 2023-05-23.
|
||
|
//
|
||
|
|
||
|
import SwiftUI
|
||
|
|
||
|
struct FeedView: View {
|
||
|
var source: Feed
|
||
|
|
||
|
var body: some View {
|
||
|
List {
|
||
|
ForEach(1..<20) { item in
|
||
|
FeedViewCell()
|
||
|
}
|
||
|
}
|
||
|
.navigationTitle(source.name!)
|
||
|
}
|
||
|
}
|