Post

Replies

Boosts

Views

Activity

Reply to How to create an overlay with padding that ignores the safe area?
Hi, if you put .ignoresSafeArea() after the .overlay. it'll work. struct ContentView: View { var body: some View { List { Text("Content") } .overlay(alignment: .bottom) { content } .ignoresSafeArea() } var content: some View { VStack { Text("Custom Container") } .frame(maxWidth: .infinity) .frame(height: 400) .background(Color.gray, in: .rect(corners: .concentric, isUniform: true)) .padding(15) } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Aug ’25
Reply to StoreKit 2 – IAP Subscriptions Not Appearing in Sandbox
Hi, did you add the StoreKit Configuration File? When creating it, make sure to check 'Sync this file with an app in App Store Connect', select your app. Finally, make sure that the file was able to sync with the app store. good luck!
Replies
Boosts
Views
Activity
Aug ’25
Reply to How to create an overlay with padding that ignores the safe area?
Hi, if you put .ignoresSafeArea() after the .overlay. it'll work. struct ContentView: View { var body: some View { List { Text("Content") } .overlay(alignment: .bottom) { content } .ignoresSafeArea() } var content: some View { VStack { Text("Custom Container") } .frame(maxWidth: .infinity) .frame(height: 400) .background(Color.gray, in: .rect(corners: .concentric, isUniform: true)) .padding(15) } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Aug ’25