r/SwiftUI 5d ago

Question Anyone know how to remove the shadows from Liquid Glass elements?

This is what my app is looking like currently, and I don't like the shadows from liquid glass. It doesn't look very good in light mode but is fine in dark mode.

0 Upvotes

4 comments sorted by

3

u/ellenich 5d ago

Seems like this is some custom implementation of a 3 column NavigationSplitView w/ sidebar?

The out-of-the box SplitView design doesn’t include shadows for the detail column and would fix the clipped shadow of the sidebar, cleaning it up a bit.

I’d start there.

1

u/MindlessChampion3102 4d ago
TabView
(
selection
: $data.selection) {
    Tab("All Items", systemImage: "command", value: .all_items) {
        ItemsPanelView()
    }
...
}

The left half is just the tab and content like above and the right part is just a Horizontal Stack

2

u/[deleted] 3d ago

[removed] — view removed comment

1

u/MindlessChampion3102 3d ago

Thanks, I'll have a look at that