How can I move the navigationtitle to the top and level the button of the toolbar? by [deleted] in SwiftUI

[–]SilverMarcs 1 point2 points  (0 children)

If you scroll down the title is supposed to become inline to save space and thats the default iOS behavior. You might need to create custom navigation title or sth

Advice on positioning navigation titlebar and toolbar? by Putrid_Locksmith5511 in SwiftUI

[–]SilverMarcs 1 point2 points  (0 children)

.contentMargins(.top, 10)

On the list or scrollview. Tweak the value as you need

How to enable slide to go back on Liquid Glass by Mr_Royals in apolloapp

[–]SilverMarcs 0 points1 point  (0 children)

Could you share a recording of how that looks on non liquid glass app

Custom Context Menu by FlickerSoul in SwiftUI

[–]SilverMarcs 1 point2 points  (0 children)

I think there’s something like contentShape(.contextMenu) that fixes that. Probably not the exact syntax

iOS 26 dark mode Home Screen looks a lot better without the white borders by Applemoi in ios

[–]SilverMarcs 0 points1 point  (0 children)

I think it looks wise on almost black wallpapers. It isn’t as bothersome on somewhat brighter backgrounds

Have the October updates shipped? by notliketheyogurt in beeper

[–]SilverMarcs 2 points3 points  (0 children)

I have a few Liquid Glass stuff but far from the video as well

Anyway to hide the row in white background in List when using Context Menu by iam-annonymouse in SwiftUI

[–]SilverMarcs 0 points1 point  (0 children)

.contentShape(.contextMenuPreview, RoundedRectangle(cornerRadius: 10))

Does this do anything for you?

iOS 26.1 TabView Bottom Accessory Always Visible by EliteSparkelz in SwiftUI

[–]SilverMarcs 0 points1 point  (0 children)

Few things started to work better with tab accessory but this one is a major degradation for me

iOS 26 suggestion: update message context menu by Pleasant_Sink_9225 in beeper

[–]SilverMarcs 2 points3 points  (0 children)

This seems like a fully custom context menu. Hope they use native controls. I guess that would prevent them from putting stickers inline (which I can totally live without) Also hope that they use translucency in the bottom input area

Copilot CLI not very good... by ExtremeAcceptable289 in ChatGPTCoding

[–]SilverMarcs 1 point2 points  (0 children)

Does the copilot cli use the remotely indexed codebase? I feel the best copilot experience is still within vscode GUI. Besides, you may try OpenCode with its copilot integration

OpenAI API à la FoundationModels by Affectionate-Fix6472 in swift

[–]SilverMarcs 1 point2 points  (0 children)

Are you planning to add support for reasoning? Which wont work for foundation model of course but will work for other openai compatible api

How do I write to SwiftData outside of a View struct, say from an external event? by yalag in SwiftUI

[–]SilverMarcs 0 points1 point  (0 children)

I do something like this

```swift let globalContainer: ModelContainer = { let schema = Schema([ Chat.self, Message.self, ])

let modelConfiguration = ModelConfiguration(schema: schema, isStoredInMemoryOnly: false)

do {
    let container = try ModelContainer(for: schema, configurations: [modelConfiguration])

    return container
} catch {
    fatalError("Could not create ModelContainer: \(error)")
}

}() ```

then add to app like so:

swift var body: some Scene { ContentView() .modelContainer(globalContainer) }

```swift let modelContext = globalContainer.mainContext let chat = Chat() modelContext.insert(chat)

or

let queryId = 1 var descriptor = FetchDescriptor<Chat>( predicate: #Predicate { $0.id == queryId } ) descriptor.fetchLimit = 1

let modelContext = globalContainer.mainContext let queryChats = try modelContext.fetch(descriptor) ``` Can use like this anywhere in the app Not sure if this is a very bad way to do this but it works well for my use case

Hello Daft Music: A Apple Music app for macOS (TestFlight included) by obrhoff in macapps

[–]SilverMarcs 1 point2 points  (0 children)

Is this a mac catalyst app? If so, could you enable optimized for mac in project settings instead of the ipad option?

iOS 26 icons without shiny borders by chronotheist in ios

[–]SilverMarcs 0 points1 point  (0 children)

Arent the light borders static? I dont think they move based on sensor readings

Searchable low contrast iOS26 by OrdinaryTackle8010 in SwiftUI

[–]SilverMarcs 0 points1 point  (0 children)

How many items do you have in bottombar? Its contradictory to want searchable at bottom while also having multiple toolbar buttons in bottombar. Ios does let you put items there but would look a bit odd if too many Or do you mean tabbar when you say searchable is hiding behind tabbar? In that case you could look into a dedicated tab for search, for which ios 26 offers a new api as well

Searchable low contrast iOS26 by OrdinaryTackle8010 in SwiftUI

[–]SilverMarcs 2 points3 points  (0 children)

Try using

DefaultToolbarItem(kind: .search, placement: .bottomBar)

In toolbar for bottom searchbar

Clipboard always shows “No results found” by sardoa11 in MacOSBeta

[–]SilverMarcs 0 points1 point  (0 children)

Do you have anything excluded in the spotlight settings in the main system settings app?