TEAM LICENSES: Save money and learn new skills through a Hacking with Swift+ team license >>

app loses state when going to background when using sizeClassic in SwiftUI

Forums > SwiftUI

I have a view created for the iPad with a Sidebar and another for the iPhone with a tabview. The problem is that when I use sizeClass, the SideBarView() view loses its state every time the app enters the background.

This does not happen if I use the SideBarView() view without the sizeClass conditional. Without that variable, it works correctly without any problem.

var body: some View {
    #if os(iOS)
    if horizontalSizeClass == .compact {
        TabMainView()
    } else {
        SideBarView()
    }
    #else //MacOSView
        SideBarView()
    #endif
}

Any idea?

2      

Hacking with Swift is sponsored by RevenueCat.

SPONSORED Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure your entire paywall view without any code changes or app updates.

Learn more here

Sponsor Hacking with Swift and reach the world's largest Swift community!

Reply to this topic…

You need to create an account or log in to reply.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.