Post

Replies

Boosts

Views

Activity

Autofill verification codes received in Mail
As announced for iOS 17 and macOS Sonoma, “One-time verification codes you receive in Mail are filled in automatically, so you can log in without leaving Safari.” Is there any documentation about this? Maybe for a specific keyword that must be in the HTML email body? I tried it on my website with a verification code sent by email and it didn't work.
4
4
3.3k
Oct ’23
Custom area that can be used to move a window on the desktop
If apps are not in full screen but in front of the desk, you can move them back and forth using drag and drop on the navigation bar (this is the area where Test is shown in the picture). Is it possible in SwiftUI to define your own areas where this is possible? So, for example, that you can move the window with a click anywhere on the window? import SwiftUI struct ContentView: View { var body: some View { NavigationSplitView { List { NavigationLink { Text("Item") } label: { Text("Content") } } } .navigationSplitViewColumnWidth(min: 180, ideal: 200) .toolbar { ToolbarItem { Button() { Label("Add Item", systemImage: "plus") } } } } detail: { Text("Select an item") } } }
0
2
457
Sep ’23