-
Notifications
You must be signed in to change notification settings - Fork 20
Open
Description
Hi
Using a list as main content doesn't works. List never displays
How to
In StocksMainContent, just replace body
var body: some View {
VStack(spacing: 0) {
ScrollView {
ForEach(0..<5, id: \.self) { _ in
newsRow
}
}
Spacer(minLength: 72)
}
}with
var body: some View {
List {
ForEach(0..<50, id: \.self) { _ in
newsRow
}
}
.listStyle(.plain)
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels