I'm making a seasonal anime guide app, in the open for all to experience and learn from.
Another short stream, let's add support for regions to the management UI!
#Jiiiii #DevStream #tvOS #visionOS #macOS #iOS #iPadOS #Anime #SwiftLang #SwiftUI #Vapor #WebAuthn #BuildInPublic #TestFlight #PWA #WebPush
Come chill with me: https://youtube.com/live/Qr_x0gMJoNs
It's a bit weird how the StandBy widgets picker has this big rounded preview which does not really materialize in real use. Apple's own widgets get cut off in the preview too, so I assume it's fine. #SwiftUI

Why in hell can't you preview lock screen widgets in Swift Previews? #SwiftUI
WIP of my Pocket replacement app
#ios #development #swift #swiftui #iosdev

RM2000 Tape Recorder 1.1.1 is out!
It includes new columns (“Date” and “File Size”) in the Sample Library table, and a setting to warn before quitting the app in settings.
#swift #swiftui #macOS #buildinpublic #RM2000 #indieapp

It's been a while since I've run into a serious issue with SwiftUI. Are customizable toolbars and multiple windows just completely broken? My app keeps crashing complaining about duplicates of system-provided items like the sidebar toggle and splitViewSeparator?
Refreshed widgets are coming along nicely. Some more fine adjustments and that's one more thing done for iOS 26. #SwiftUI #BuildInPublic

Using .clipShape(.containerRelative) in a widget, how do I give that odd rectangle the same corner radius? #SwiftUI

I originally tried to refactor an entire toolbar into a new modifier but this seemed to result in issues with the Xcode/OS betas. Unclear if this should be supported.
ToolbarContentBuilders seem to work fine.
For a complex #SwiftUI toolbar you may want to refactor the individual toolbar items out of your view code.
You will want to create ToolBarContentBuilder items for each item.
@ToolbarContentBuilder
var ButtonOne: some ToolbarContent {
ToolbarItem (placement: .primaryAction) Button { do something… }
}
}
then use the builders:
.toolbar {
ButtonOne
ButtonTwo
}
I put these builders in an extension on my view so they are not in the way.
I did a thing https://blog.objectivepixel.com/posts/using-paperkit-papermarkerview-in-swiftui/ #swift #swiftui
How can I stop larger text from breaking my padding in widgets? #SwiftUI
