Post

Replies

Boosts

Views

Activity

Reply to Concentric rectangle shape
It seems like this only works when the shape or image is close to the edge of the screen. for example this works: var body: some View { VStack{ Spacer() Color.yellow .padding() .background(Color.red, in: .rect(corners: .concentric)) .padding(20) .frame(height: 300) } .ignoresSafeArea() } but this does not: var body: some View { VStack{ Color.yellow .padding() .background(Color.red, in: .rect(corners: .concentric)) .padding(20) .frame(height: 300) } .ignoresSafeArea() } Is this the intended behavior or is this a bug?
Topic: Design SubTopic: General Tags:
Aug ’25
Reply to Widgets not showing up in MacOS widget gallery
Thanks for replying. I built the app as a multiSystem app so the widgets should work on the MacOS without have to create a Mac specific extension. After some research I found that the problem isn't the exclusivity but there is a bug with widgets that use AppIntentConfiguration on macOS, which other people are having issues with as found here: https://developer.apple.com/forums/thread/765020?login=true&page=1#824567022
Feb ’25
Reply to Can't get app group capability for macos in a Multiplatform app
Thank you for your recommendation of reading about App Groups. I decided to try creating separate targets for IOS and MacOS with separate app groups for each platform. It seemed to work till I realized that widget extensions will be an issue. I can't use the same widget extension between both platforms because of the app group issue. And I can't create multiple widget extensions because it seems like there can be only one widget bundle. I'll have to look into the platform-specific .entitlements like you mentioned, but I fear that I will still run into the same widget extension problem mentioned above even with platform specific .entitlement files.
Topic: Privacy & Security SubTopic: General Tags:
Sep ’24
Reply to Swipe to go back still broken with Zoom navigation transition.
Just tried again on iOS 26.3. Still broken.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Feb ’26
Reply to Swipe to go back still broken with Zoom navigation transition.
Its been months since iOS26 has been released and this bug is still present. Very disappointing.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jan ’26
Reply to Source view disappearing when interrupting a zoom navigation transition
Similar issue here. Hope it gets fixed with IOS 26.1.
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Sep ’25
Reply to Concentric rectangle shape
It seems like this only works when the shape or image is close to the edge of the screen. for example this works: var body: some View { VStack{ Spacer() Color.yellow .padding() .background(Color.red, in: .rect(corners: .concentric)) .padding(20) .frame(height: 300) } .ignoresSafeArea() } but this does not: var body: some View { VStack{ Color.yellow .padding() .background(Color.red, in: .rect(corners: .concentric)) .padding(20) .frame(height: 300) } .ignoresSafeArea() } Is this the intended behavior or is this a bug?
Topic: Design SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’25
Reply to Cannot install the test flight version on MacOS
This is happening to me too right now.
Replies
Boosts
Views
Activity
Mar ’25
Reply to Invalid code signing entitlements with app group on macOS
I started getting this error too even though nothing had changed for me either.
Topic: Code Signing SubTopic: Entitlements Tags:
Replies
Boosts
Views
Activity
Feb ’25
Reply to Widgets not showing up in MacOS widget gallery
Thanks for replying. I built the app as a multiSystem app so the widgets should work on the MacOS without have to create a Mac specific extension. After some research I found that the problem isn't the exclusivity but there is a bug with widgets that use AppIntentConfiguration on macOS, which other people are having issues with as found here: https://developer.apple.com/forums/thread/765020?login=true&page=1#824567022
Replies
Boosts
Views
Activity
Feb ’25
Reply to WidgetKit keep crashing and widgets not displaying
I'm still having the issue.
Replies
Boosts
Views
Activity
Feb ’25
Reply to Can't get app group capability for macos in a Multiplatform app
Thank you for your recommendation of reading about App Groups. I decided to try creating separate targets for IOS and MacOS with separate app groups for each platform. It seemed to work till I realized that widget extensions will be an issue. I can't use the same widget extension between both platforms because of the app group issue. And I can't create multiple widget extensions because it seems like there can be only one widget bundle. I'll have to look into the platform-specific .entitlements like you mentioned, but I fear that I will still run into the same widget extension problem mentioned above even with platform specific .entitlement files.
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’24