Do not even know how you can clarify this…
On IOS 26, in a scrollable view that incorporates a Menu, if I begin scrolling the view earlier than the menu choice animation finishes (roughly inside ~1 second after tapping an choice), the Menu icon briefly mispositions: it shifts relative to its container and seems to “float” exterior of the format bounds. As soon as the animation completes or scrolling stops, it snaps again, however through the interplay the button is visibly indifferent from the container/alignment.
This isn’t anticipated conduct proper?? That is occurring in each menu in my mission, even in menus utilized in a toolbar of a sheet, when dragging the sheet after choice, the identical drawback happens. I hooked up some gifs of various instances.


Pattern for testing:
import SwiftUI
struct ContentView: View {
personal let objects = (1...30).map { "Merchandise ($0)" }
var physique: some View {
NavigationStack {
ScrollView {
LazyVStack(alignment: .main, spacing: 12, pinnedViews: []) {
HStack {
Textual content("Scrollable header")
.font(.headline)
Spacer()
Menu {
Button("Choice 1") {
// deal with choice 1
}
Button("Choice 2") {
// deal with choice 2
}
} label: {
Picture(systemName: "ellipsis.circle")
.imageScale(.giant)
.padding(8)
}
.menuStyle(.button)
.buttonStyle(.plain)
.accessibilityLabel("Extra choices")
}
.padding(.horizontal)
.padding(.prime, 8)
ForEach(objects, id: .self) { merchandise in
Textual content(merchandise)
.body(maxWidth: .infinity, alignment: .main)
.padding(.horizontal)
.padding(.vertical, 12)
.background(.background)
.overlay(alignment: .backside) {
Divider()
}
}
}
}
.navigationTitle("Objects")
.background(Shade(.systemGroupedBackground))
}
}
}
#Preview {
ContentView()
}
