SwiftUI context menu scroll broken when view changes

Hi I am on ios 18 and xcode 16

I have a view that changes with a timer and I want to be able to long press that view and show a context menu. However the scroll on the context menu seems to be broken?

import SwiftUI
struct ContentView: View {
  @State var number = 0
  @State var timer = Timer.publish(every: 0.25,
                                   on: .main,
                                   in: .common).autoconnect()
  var body: some View {
    VStack {
      Text(number.formatted())
        .font(.largeTitle)
      Text("Long press me")
      Text("Notice context menu cannot scroll down")
    }
    .padding()
    .background {
      RoundedRectangle(cornerRadius: 10.0)
        .fill(Color(uiColor: .secondarySystemBackground))
    }
    .contextMenu {
      ForEach(0 ..< 100) { index in
        Button {
          print("option \(index)")
        } label: {
          Label("Option \(index)", systemImage: "globe")
        }
      }
    }
    .onReceive(timer) { t in
      number += 1
    }
  }
}

Is this a bug in swiftUI? In my real application I want the context menu to be able to switch the kind of data the user is viewing.

SwiftUI context menu scroll broken when view changes
 
 
Q