-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathFeedView.swift
More file actions
39 lines (38 loc) · 1.11 KB
/
FeedView.swift
File metadata and controls
39 lines (38 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import SwiftUI
import KotlinSharedUI
import Kingfisher
struct FeedView: View {
let data: UiTimeline.ItemContentFeed
var body: some View {
VStack(
alignment: .leading
) {
if let image = data.image {
AdaptiveGrid(singleFollowsImageAspect: false, spacing: 4, maxColumns: 3) {
Color.clear
.overlay {
NetworkImage(data: image)
}
.clipped()
}
.clipped()
}
Text(data.title)
if let desc = data.description_ {
Text(desc)
.font(.caption)
.foregroundStyle(.secondary)
}
HStack {
NetworkImage(data: data.sourceIcon)
.frame(width: 20, height: 20)
Text(data.source)
.font(.footnote)
Spacer()
if let date = data.createdAt {
DateTimeText(data: date)
}
}
}
}
}