Close Menu
  • Home
  • AI
  • Big Data
  • Cloud Computing
  • iOS Development
  • IoT
  • IT/ Cybersecurity
  • Tech
    • Nanotechnology
    • Green Technology
    • Apple
    • Software Development
    • Software Engineering

Subscribe to Updates

Get the latest technology news from Bigteetechhub about IT, Cybersecurity and Big Data.

    What's Hot

    This week in AI updates: Google’s UCP standard, a redesigned Slackbot, and more (January 16, 2026)

    January 18, 2026

    Excitonic negative refraction mediated by magnetic orders

    January 18, 2026

    Rare earth magnet recycling centre launched in West Midlands

    January 18, 2026
    Facebook X (Twitter) Instagram
    Facebook X (Twitter) Instagram
    Big Tee Tech Hub
    • Home
    • AI
    • Big Data
    • Cloud Computing
    • iOS Development
    • IoT
    • IT/ Cybersecurity
    • Tech
      • Nanotechnology
      • Green Technology
      • Apple
      • Software Development
      • Software Engineering
    Big Tee Tech Hub
    Home»iOS Development»SwiftUI sheet: background appears above the sheet when using .presentationDetents (iOS 26 regression)
    iOS Development

    SwiftUI sheet: background appears above the sheet when using .presentationDetents (iOS 26 regression)

    big tee tech hubBy big tee tech hubDecember 10, 2025032 Mins Read
    Share Facebook Twitter Pinterest Copy Link LinkedIn Tumblr Email Telegram WhatsApp
    Follow Us
    Google News Flipboard
    SwiftUI sheet: background appears above the sheet when using .presentationDetents (iOS 26 regression)
    Share
    Facebook Twitter LinkedIn Pinterest Email Copy Link


    I’ve encountered what appears to be a SwiftUI rendering bug on iOS 26+ when using .presentationDetents.

    When I present a sheet normally, any SwiftUI background (even a simple Color.clear or .background(Color.red.opacity(0.5))) correctly appears behind the sheet.

    But the moment I add:

    .presentationDetents([.medium])
    

    …the exact same background starts rendering above the sheet, even though:

    This feels like a regression in SwiftUI’s detent-sheet.


    Minimal reproducible example

    struct LoginScreen: View {
        @State var show = false
        
        var body: some View {
            ZStack {
                Color.red.opacity(0.3)      // should stay under sheet
                Button("Show") { show = true }
            }
            .sheet(isPresented: $show) {
                Text("Sheet")
                    .presentationDetents([.medium])   // ← adding this causes incorrect stacking
            }
        }
    }
    

    Expected Behavior**

    • The red background should remain behind the sheet.

    • This is the case in iOS 18.5 / 18.6 and earlier versions.

    • This is also the case as long as .presentationDetents is not used.


    Actual Behavior

    • On iOS 26.0 / 26.1, when .presentationDetents is applied, the root background (and overlays) draw above the sheet.

    • This happens even in the simplest ZStack setup.

    • .zIndex does not fix the issue.

    • .overlay exhibit the same incorrect ordering.


    Environment


    Is this a known regression with .presentationDetents behavior on iOS 26?
    Is there a workaround that keeps the sheet above the app’s root backgrounds?

    Any insight appreciated.



    Source link

    .presentationDetents appears background iOS regression sheet SwiftUI
    Follow on Google News Follow on Flipboard
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email Copy Link
    tonirufai
    big tee tech hub
    • Website

    Related Posts

    ios – Image file corrupted only when uploaded from Mobile Safari to Spring Boot on AWS EC2

    January 18, 2026

    ios – SwiftUI .task does not update its references on view update

    January 16, 2026

    crashlytics – iOS Firebase EXC_BAD_ACCESS KERN_INVALID_ADDRESS

    January 15, 2026
    Add A Comment
    Leave A Reply Cancel Reply

    Editors Picks

    This week in AI updates: Google’s UCP standard, a redesigned Slackbot, and more (January 16, 2026)

    January 18, 2026

    Excitonic negative refraction mediated by magnetic orders

    January 18, 2026

    Rare earth magnet recycling centre launched in West Midlands

    January 18, 2026

    Using Amazon EMR DeltaStreamer to stream data to multiple Apache Hudi tables

    January 18, 2026
    About Us
    About Us

    Welcome To big tee tech hub. Big tee tech hub is a Professional seo tools Platform. Here we will provide you only interesting content, which you will like very much. We’re dedicated to providing you the best of seo tools, with a focus on dependability and tools. We’re working to turn our passion for seo tools into a booming online website. We hope you enjoy our seo tools as much as we enjoy offering them to you.

    Don't Miss!

    This week in AI updates: Google’s UCP standard, a redesigned Slackbot, and more (January 16, 2026)

    January 18, 2026

    Excitonic negative refraction mediated by magnetic orders

    January 18, 2026

    Subscribe to Updates

    Get the latest technology news from Bigteetechhub about IT, Cybersecurity and Big Data.

      • About Us
      • Contact Us
      • Disclaimer
      • Privacy Policy
      • Terms and Conditions
      © 2026 bigteetechhub.All Right Reserved

      Type above and press Enter to search. Press Esc to cancel.