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: 2 additions & 0 deletions V2er/View/Widget/Updatable/LoadmoreIndicatorView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ struct LoadmoreIndicatorView: View {
}
}
.padding()
.greedyWidth()
.background(Color.itemBg)
}
}

Expand Down
1 change: 1 addition & 0 deletions V2er/View/Widget/Updatable/UpdatableView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ struct UpdatableView<Content: View>: View {
}
}
}
.background(Color.itemBg)
.onChange(of: state.scrollToTop) { scrollToTop in
guard scrollToTop != 0 else { return }
withAnimation {
Expand Down
Loading