All basic views now done.

Some tidying of views will be needed.
Next, data fetching needs to be worked on.

Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
This commit is contained in:
Louis Hollingworth 2023-05-23 18:37:04 +01:00
parent a18f485502
commit 058cf52926
Signed by: lucxjo
GPG key ID: A11415CB3DC7809B
6 changed files with 167 additions and 25 deletions

21
Leganto/FeedView.swift Normal file
View file

@ -0,0 +1,21 @@
//
// 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!)
}
}