Ignore compact mode handling on iPhone

This commit is contained in:
Jackson Harper 2023-12-14 11:39:59 +08:00
parent 673bc1df39
commit 8aa1e2e969

View file

@ -245,7 +245,7 @@ struct AnimatingCellHeight: AnimatableModifier {
var toolbarItems: some ToolbarContent {
Group {
ToolbarItem(placement: .barLeading) {
if horizontalSizeClass != .compact {
if UIDevice.isIPhone || horizontalSizeClass != .compact {
VStack(alignment: .leading) {
let showDate = isListScrolled && !listTitle.isEmpty
if let title = viewModel.appliedFilter?.name {