NavigationView的sheet上如何显示resize indicator

resize indicator什么样

红色箭头所指的就是resize indicator。

如何显示这个indicator

错误的做法是使用一个色块当作indicator。

正确的做法:

NavigationStack {
    MyView()
    .navigationTitle("愿景")
    .sheet(isPresented: $showAddVisionView) {
        MySheetView()
            .presentationDetents([.large, .medium]) // 这里如果只有一种大小就不会显示resize indicator,如果有多个大小选项就会显示resize indicator
    }
}
NavigationView的sheet上如何显示resize indicator
 
 
Q