Filter
Exclude
Time range
-
Near
Replying to @DylanMcD8 @rjonesy
If you use `presentationBackground` with a solid color, the system removes the glassy sheet background. And once that happens, all glass content on top of the sheet becomes fully glass instead of translucent.
2
18
575
Replying to @jordanborth
Yea those separators looks awful now. Think I was having to use .presentationBackground(.clear) on iOS 26.0 to get a glass background. But seems it’s for free now.
1
2
58
13 Nov 2025
Replying to @alpennec
Nope. Using `.presentationBackground(.clear)` didn't work for removing the glass effect in 26.0. This might have changed in 26.1 given that this behaviour is now supported in UIKit as official API.
5
572
Replying to @friederix_
What do you mean, like the presentationBackground kind of stuff?
1
61
24 Sep 2025
Anyone know how to remove the default glass effect sheet background in ios26? Was previously using .presentationBackground(.clear) but looks like that broke in ios26 :(
3
370
Use `.presentationBackground(.clear)` to make a SwiftUI presentation (i.e. `.sheet` or `.fullScreenCover`) transparent, showing the view behind it.
2
87
20 Sep 2025
Apple’s response to this radar: *The expectation for presentationBackground(.clear) is that the background is glass.* 😒
1
7
1,403
Replying to @jordibruin
Does .presentationBackground work?
2
304
Replying to @DylanMcD8
I haven’t tried on iOS 26, but does `presentationBackground(Color.clear)` work?
2
2
574
16 Jul 2025
tried and true recipe for simulator death 👨‍🍳 ingredients: - ios 17.0 - .presentationBackground - .photosPicker (any flavor) mix together and serve immediately to your unsuspecting simulator. pairs well with tears and stackoverflow searches
55
Replying to @simonbs
Pretty sure this is by design. In one of the sessions they say we should remove .presentationBackground() and let the system handle it
1
1
360
Replying to @FloWritesCode
I need .scrollContentBackground(.hidden) to get the glass effect when the sheet is small and the WWDC session I referenced discourages the use of .presentationBackground 😕
4
694
Replying to @simonbs
Does .presentationBackground or .scrollContentBackground do the trick?
1
2
717
1 Jun 2025
The .presentationBackground(_:) modifier is only applicable to modals so it won’t work with navigation stack. Unless there’s something similar for a navigation detail you’ll have to use modals which anyway I feel is the right choice for these kinda views.
1
1
277
31 May 2025
Replying to @Dimillian
Try .fullScreenCover with presentationBackground
3
1
39
2,557
Replying to @Dimillian
Have you tried presentationBackground(_:) with a clear color? Not sure if this API is relevant actually when using transition. developer.apple.com/document…
1
1
1,413
18 May 2025
presentationBackground(alignment:content:) のalignmentのところに The alignment that the modifier uses to position the implicit ZStack that groups the background views. って書いてあってへぇーってなってる。 developer.apple.com/document… #SwiftUI
97
16 May 2025
update: turns out it's a bug that occurs when using .presentationBackground() thankfully there's a hacky fix for it 🥴 developer.apple.com/forums/t…
1
250
24 Apr 2025
SwiftUI Tip 💡 Apply a blurred background to a sheet using the .presentationBackground() modifier. iOS 16.4 → learnandcodewithenid.com
2
10
168
12,528