swiftui

Back Open Paginator
14.08.2025 13:15
dimitribouniol (@dimitribouniol@mastodon.social)

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!

Come chill with me: youtube.com/live/Qr_x0gMJoNs




Show Original Post


14.08.2025 13:05
nicoreese (@nicoreese@mastodon.social)

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.





Show Original Post


14.08.2025 12:07
nicoreese (@nicoreese@mastodon.social)

Why in hell can't you preview lock screen widgets in Swift Previews?




Show Original Post


14.08.2025 01:13
acxtrilla (@acxtrilla@mastodon.social)

WIP of my Pocket replacement app





Show Original Post


14.08.2025 01:13
rm2000 (@rm2000@mastodon.social)

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.





Show Original Post


14.08.2025 00:24
emorydunn (@emorydunn@mastodon.tinycart.club)

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?

#SwiftUI




Show Original Post


13.08.2025 23:59
nicoreese (@nicoreese@mastodon.social)

Refreshed widgets are coming along nicely. Some more fine adjustments and that's one more thing done for iOS 26.





Show Original Post


13.08.2025 22:45
nicoreese (@nicoreese@mastodon.social)

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





Show Original Post


13.08.2025 22:13
patrickmcconnell (@patrickmcconnell@mastodon.social)

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.




Show Original Post


13.08.2025 22:11
patrickmcconnell (@patrickmcconnell@mastodon.social)

For a complex 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.




Show Original Post


13.08.2025 22:07
Clarkezone (@Clarkezone@hachyderm.io)

I did a thing blog.objectivepixel.com/posts/ #swift #swiftui




Show Original Post


13.08.2025 21:42
nicoreese (@nicoreese@mastodon.social)

How can I stop larger text from breaking my padding in widgets?





Show Original Post


1 ...216 217 218 219 220 221 222 223 224 225 226 ...236
UP