Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion V2er/View/Explore/ExplorePage.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ struct ExplorePage: BaseHomePageView {
AvatarView(url: item.avatar, size: 30)
// .to { UserDetailPage(userId: item.member) }
Text(item.title)
.foregroundColor(.bodyText)
.foregroundColor(Color.primaryText)
.lineLimit(2)
.greedyWidth(.leading)
}
Expand Down
3 changes: 2 additions & 1 deletion V2er/View/Message/MessagePage.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,15 @@ struct MessagePage: BaseHomePageView {
struct MessageItemView: View {
let item: MessageInfo.Item
let quoteFont = Style.font(UIFont.prfered(.subheadline))
.foregroundColor(Color.bodyText.uiColor)
.foregroundColor(Color.secondaryText.uiColor)

var body: some View {
HStack(alignment: .top, spacing: 10) {
AvatarView(url: item.avatar, size: 40)
.to { UserDetailPage(userId: item.username)}
VStack(alignment: .leading) {
Text(item.title)
.foregroundColor(Color.primaryText)
.greedyWidth(.leading)
.background(Color.itemBg)
.to { FeedDetailPage(id: item.feedId) }
Expand Down
Loading